Maarten’s Posterous

Internet Development 
« Back to blog

Redirect

This is how you do a 301 Redirect in PHP

<?php
header("HTTP/1.1 301 Moved Permanently");
header("Location: http://www.example.com/newlocation.html");
?>

This is how you do the same thing in .htaccess

Redirect 301 /oldlocation.html http://www.example.com/newlocation.html

Comments (0)

Leave a comment...

 
To leave a comment on this posterous, please login by clicking one of the following.
Posterous-login     Connect     twitter