Daily Archives: May 13, 2007

URL redirection using PHP

Here is an one-liner PHP code for URL redirection instantly.

< ?php
header( 'Location: http://www.yoursite.com/new_page.html' ) ;
?>

Make sure that you don’t do send any HTML before doing this. The following is not going to work.

<html>
...
< ?php
header( 'Location: http://www.yoursite.com/new_page.html' ) ;
?>
...</html>