301 Redirect in Php & Url Redirection

By Php

we can also redirect visitor to a page to a new one or a another pages.Redirecting a visitor to another page is known as 301 Redirection.

Example:I have a page www.site.com/a1.php and I have to redirect it to a another pages www.site.com/a2.php,This can be done by using this simple Php code.

<?
header(’Location: http://www.site.com/a2.php’);
?>

Copy this code and paste it in a1.php,So when a visitor visits www.site.com/a1.php ,he will be automatically redirected to

www.site.com/a2.php..

Leave a comment

Your comment