URL 포워딩 하는 방법

by 조쉬 posted Feb 27, 2014
?

단축키

Prev이전 문서

Next다음 문서

ESC닫기

크게 작게 위로 아래로 댓글로 가기 인쇄

index파일에서 외부 주소 연결할 때 또는 하부 디렉토리로 연결할때 이용
1. 메타태그를 이용한 방법
<meta http-equiv="Refresh" content="0; URL=http://aaa.net">
<meta http-equiv="Refresh" content="0; URL=/blog/">

2. 자바스크립트를 이용한 방법
<script>document.location="http://aaa.net";</script>
<script>document.location="/blog/";</script>
<script language='javascript'>
<!--
location.href = 'http://aaa.net';
-->
</script>
3. PHP 를 이용한 방법
<? header("Location:http://aaa.net"); ?>
<? header("Location:/blog/"); ?>