본문 바로가기

잡학사전

특정 페이지로의 URL 포워딩 방법

 

URL 포워딩 하는 방법 입니다.

보통 index.htm 에서 하부 디렉토리로 연결하거나 외부 주소
연결할 때 이용됩니다.



1. 메타태그를 이용한 방법

<meta http-equiv="Refresh" content="0; URL=http://abc.co.kr">
-------> abc.co.kr 로 연결
<meta http-equiv="Refresh" content="0; URL=/tt/">
-------> /tt 폴더로 연결



2. 자바스크립트를 이용한 방법

<script>document.location="http://abc.co.kr";</script>
<script>document.location="/tt/";</script>

<script language="javascript">
location.replace("이동주소");
</script

3. PHP 를 이용한 방법

<? header("Location:http://abc.co.kr"); ?>
<? header("Location:/tt/"); ?>

'잡학사전' 카테고리의 다른 글

윈도7 PC를 무선 AP로 만들어보자  (0) 2015.10.06
navicat connect  (0) 2015.04.02
작업표시줄에 빠른실행 만들기  (0) 2012.06.02
FTP로 지워지지 않는 파일 지우기  (3) 2012.06.02
부득탐승  (0) 2012.05.31