PHP 리다이렉션(페이지 이동)의 3가지 방법
1. 먼저 메타테그를 이용한 방법
1 2 3 |
<? echo "<meta http-equiv='refresh' content='0; url=http://도메인'>"; ?> |
2. 자바스크립트를 이용한 방법
1 2 3 |
<? echo "<script> document.location.href='도메인'; </script>"; ?> |
또는
1 2 3 |
<? echo "<script> window.location.replace('도메인'); </script>"; ?> |
3. 헤더를 이용한 방법
1 2 3 |
<? header("Location: 도메인"); ?> |