Home | Looking for something? Sign In | New here? Sign Up | Log out

Saturday 21 January 2012

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();

0 comments:

Post a Comment