본문 바로가기

HTML/JS/CSS

주소창에 도메인주소 고정하는 팁!

저 같은 경우에 아래와 같은 방법으로 해결했습니다....

계정내의 루트에 따로 index.html 파일을 만듭니다. 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>title</title>
</head>
<frameset rows="*,0" frameborder="NO" border="0" framespacing="0">
  <frame name="main" scrolling="auto" noresize src="gnuboard4/index.php" marginheight="0" marginwidth="0">
  <frame name="page" scrolling="no" noresize src="" marginheight="0" marginwidth="0">
</frameset>
<noframes><body bgcolor="#FFFFFF" text="#000000">
</html>

</html>

이렇게 하면, 주소 고정도 되고, 게시물 읽으면서 새로고침시에 첫 페이지로 이동하는것도 막을수 있습니다.

----------------------------------------- 두번째 -----------------------------------------

<html>
<head>
<title>▒ ▒ ▒  Welcome To 그누보드 ▒ ▒ ▒ </title>
<meta http-equiv="Content-Type" content="text/html; charset=euc-kr">
</head>
<frameset cols="0,100%" border="0">
<frame>
<frame src="http://www.도메인.co.kr/gnuboard4">  //------> 자신의 보드에 위치한 index.php
</noframes>
</frameset>
</html>