본문 바로가기

Study/Web Programing

HTTP 리다이렉션

<head>

<meta http-equiv='refresh' content='0; url='http://www'>

</head>


또는

<body>

<script>
document.location.href='http://www';
</script>
 

</body>