Redirection is common method to retrive the lost traffic, we canredirect old trafffic to the new one. Usually this can be done using .htaccess but if that can’t be done, PHP redirection is the alternative.
Code:
<?
header( "HTTP/1.1 301 Moved Permanently" );
header( "Location: http://www.new-url.com" );
?>
Why 301 redirect? Â 301 redirection is called permanent redirection, so your new URL will be indexed by google not your old one.


{ 0 comments… add one now }