URL 고정


> index.htm

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=euc-kr">
<title>URL 고정</title>
</head>
<frameset rows="*" frameborder="0" framespacing="0">
    <frame name="main" src="/index.php" noresize marginwidth="0" marginheight="0">
</frameset>
<body>
</body>
</html>


-----------------------------------
또는, 

> hidden.htm

<head>
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
</head>
<body>
</body>
</html>


> index.htm

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>URL 고정</title>
</head>
<frameset rows="*,0" frameborder="0" border="0" framespacing="0">
<frame src="main.htm" name="main" scrolling="yes" noresize />
<frame src="hidden.htm" name="hidden" />
</frameset><noframes></noframes>

</html>



 

Top