홈페이지 주소 자동으로 이동.
[code]<html>
<head>
<title></title>
<script language="javascript">
location.href="이동할 주소" ;
</script>
</head>
<body>
</body>
</html>[/code]
[code]<html>
<head>
<title></title>
<meta http-equiv="refresh" content="0; url=이동할 주소"></meta>
</head>
<body>
</body>
</html>[/code]