본문 바로가기
컴퓨터 이야기

URL 리다이렉션(redirection) - php, html

by 밴스 2020. 3. 8.
728x90

홈페이지 구축하다보면 리다이렉션(redirection)이 필요할때가 있다.

즉, 바로 다른 페이지로 넘겨주는 기능이며, 언어(language)마다 다른 것 같음.


php

index.php

<?php
	header( 'Location: http://modudadda.com/' );
?>

Location: 뒷 부분을 본인이 원하는 address 수정해주면 됨

 

 


html

index.html

<meta http-equiv="refresh" content="5;url=http://modudadda.com/" />

content="뒷 부분을 원하는 숫자로 교체, 몇 초 후 이동할 것인지 나타내는 숫자임

url- 뒷 부분을 본인이 원하는 address 수정해주면 됨

반응형

댓글