묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
사이트의 첫메인페이지와 레이아웃의 연결?
2007.08.29 15:35
그러니까
도메인이 abc.com 이었을 경우에
abc.com를 치면 xe 레이아웃 설정을 한 페이지를 보여주었으면 좋겠습니다.
<?
header("Location: http://".$_SERVER['HTTP_HOST']."/zbxe/");
?>
위의 PHP 코드를 삽입하지 않고 하는 방법을 알고 싶습니다.
이코드를 삽입하면 첫페이지의 주소가 abc.com/xe로 변경되어서 변경되지 않고
바로 abc.com 에서 xe 레이아웃을 메인화면으로 띄우고 싶습니다.
그리고 노프레임 홈페이지 만들면서 다른 메뉴로 이동해도 항상 주소가 변경되지
않고 abc.com으로 변경되게 하는 방법은 없는지도 궁금합니다.
댓글 2
-
php,cgi어렵네
2007.08.29 15:52
-
justrue
2007.08.29 16:01
아 방법을 찾았습니다. 기존 제로보드4와 개념이 같드군요.
일단 index.htm 파일을 열고
내용을
<html>
<head>
<title>타이틀</title>
<meta http-equiv="Content-Type" content="text/html; charset=euc-kr">
</head>
<frameset rows="100,0" frameborder="NO" border="0" framespacing="0" >
<frame name="main" src="main.htm">
<frame name="hidden" scrolling="AUTO" noresize src="hidden.htm" marginwidth="0" marginheight="0">
</frameset>
<noframes>
<body topmargin='+ '+ '0' leftmargin='0' marginwidth='0' marginheight='0' bgcolor=whitebgcolor="#FFFFFF" text="#000000">
내용..
</body>
</noframes>
</html>
입력하신 후 만든 main.htm 을 만들어주시면 됩니다.
<frame name="hidden" scrolling="AUTO" noresize src="hidden.htm" marginwidth="0" marginheight="0">
그리고 이코드는 음악을 배경으로 홈페이지 배경으로 사용하고 싶을 때 메뉴의 이동과 상급없이 계속 흘러
나오게 할 때 사용하시면 됩니다. 물론 hidden.htm 파일을 만드셔야겠죠.
필요없으시면 삭제하시면 됩니다.
main.htm 파일 안에는
<?
header("Location: http://".$_SERVER['HTTP_HOST']."/zbxe/");
?
php 헤더 코드를 삽입해주시면 됩니다.
index.html 에는 아래의 소스를 넣고
index2.html 는 빈 상태로 둡니다
<head>
<title></title>
</head>
<frameset rows="*,0" frameborder="0" framespacing="0">
<frame name="index" src="zbxe" noresize>
<frame name="auto_re" src="index2.html" marginheight="0">
<noframes>
</noframes>
</frameset>
</html>