묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
index.html에 주소고정 후 새로고침 문제
2012.04.27 15:12
제로보드xe로 페이지 만들어서
프레임에 넣은 뒤 주소를 고정했습니다.
그리고 페이지 이동후 새로고침하면 메인페이지로 가지 않기 위해 처리했는데
첫화면으로 이동합니다.
혹시 처리 방법을 아시는 고수님들의 조언을 부탁드립니다.
index.html 소스
<?
$LastModified = gmdate("D d M Y H:i:s", filemtime($HTTP_SERVER_VARS[SCRIPT_FILENAME]));
header("Last-Modified: $LastModified GMT");
header("ETag: \"$LastModified\"");
?>
<html>
<head>
<title>HomePage</title>
<meta http-equiv="Content-Type" content="text/html; charset=euc-kr">
</head>
<frameset cols="0,100%" border="0">
<frame>
<frame src="http://호스트 URL/xe/Main"> // 제로보드 페이지 이름(일반 html구조의 홈피 만들고 올려봐도 똑같습니다.)
</noframes>
</frameset>
</html>