Mon 5 Mar 2007
PHP Proper Redirect for Search Engines
Posted by allscoop under php code
How to do a permanent redirect using PHP.
Place this code at the top of your PHP page.
header("HTTP/1.1 301 Moved Permanently");
header("Location: http://www.example.com/otherpage.php");
exit();