본문 바로가기
Web Program/Html Lecture

[본문 스크랩] 주소창에 링크주소 안나타나게 하는 원프레임소스

by 현이빈이 2008. 9. 4.
반응형
웹디를 위한 공간 | 수나
원문 http://blog.naver.com/soonanara/80002684010

<?
// 새로고침 후에 이전 페이지 유지하기
$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>
<meta http-equiv="Content-Type" content="text/html; charset=EUC-KR">
<meta http-equiv="Cache-Control" content="no-cache">
<meta http-equiv="Pragma" content="no-cache">
<title>네이버</title>
</head>

<frameset>
    <frame src="index.html" noresize>
    <noframes>
    </noframes>
</frameset>
</html>

반응형