1. header 이용방법
2. Frame 이용방법
3. Refresh 이용방법
4. 자바스크립트 이용방법
5. Meta 태그 이용방법
<? header("Location: http://blog.missflash.com/"); ?>
참고로 주소와 : 사이의 공백을 빠트리지 말아야 합니다.2. Frame 이용방법
<html>
<title>MissFlash</title>
<frameset rows='*,100%' border=0 frameborder=0 framespacing=0>
<frame src='about:blank'>
<frame name=프레임이름(아무거나) src='http://blog.missflash.com/' marginwidth=0 marginheight=0 frameborder=no>
</frameset>
</html>
<title>MissFlash</title>
<frameset rows='*,100%' border=0 frameborder=0 framespacing=0>
<frame src='about:blank'>
<frame name=프레임이름(아무거나) src='http://blog.missflash.com/' marginwidth=0 marginheight=0 frameborder=no>
</frameset>
</html>
3. Refresh 이용방법
<head>
<title>MissFlash</title>
<meta
http-equiv="Content-Type" content="text/html; charset=euc-kr">
<meta http-equiv="Refresh" Content="0;url=http://blog.missflash.com/">
</head>
<body>
</body>
</html>
<title>MissFlash</title>
<meta
http-equiv="Content-Type" content="text/html; charset=euc-kr">
<meta http-equiv="Refresh" Content="0;url=http://blog.missflash.com/">
</head>
<body>
</body>
</html>
4. 자바스크립트 이용방법
<html>
<head>
<title>MissFlash</title>
</head>
<body>
<script language="JavaScript">
location.replace("http://blog.missflash.com/")
</script>
</body>
</html>
<head>
<title>MissFlash</title>
</head>
<body>
<script language="JavaScript">
location.replace("http://blog.missflash.com/")
</script>
</body>
</html>
5. Meta 태그 이용방법
<meta http-equiv="refresh" content="3;url=http://blog.missflash.com/">
'Tip&Tech > Web' 카테고리의 다른 글
내 홈페이지에 채팅방을 개설하자! (6) | 2007.01.08 |
---|---|
인터넷 익스플로러에서 한글입력 안될 때 대응방법 (0) | 2007.01.07 |
오른쪽 마우스 금지 해제하기 (3) | 2007.01.07 |
APM_Setup 설치후 APM_Setup의 디렉토리 안보이게 하기 (0) | 2007.01.06 |
APM_Setup 설치후 users의 디렉토리 안보이게 하기 (0) | 2007.01.06 |