PHP Proper Redirect for Search Engines
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();
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();