본문 바로가기
Study/Web Programing

HTTP 리다이렉션

by redyuika 2013. 1. 22.
반응형

<head>

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

</head>


또는

<body>

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

</body>





반응형