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


