본문 바로가기

php/Etc

php javascript html 페이지 url 이동 코드


php로 할 경우.

<?
header("location:http://biyott.tistory.com/");
?>

javascript로 할 경우 (html의 body태그에 onload로 함수를 넣어도 된다)
<script>
document.location="http://biyott.tistory.com/"
</script>

html tag로 할 경우
<meta http-equiv="refresh" content="0; url=http://biyott.tistory.com/">

참고 : http://secrice.com/writing/2006/01/12/C6E4C0CCC1F6%2BC0CCB5B_1137049906.php