|
Answer» 301 redirect is one of must-know feature for every PHP Programmer. Today i will show you my TRICKS to redirect 301.
How to redirect a single page DO NOT delete the original file. Go to the old PHP file that needs to be redirected and remove all the code and replace it with this. And just to STATE the obvious, “http://www.new-url.com” needs to be replaced with the URL of the page you want it to redirect to. ;-)
Code: [Select]<? Header( “HTTP/1.1 301 MOVED Permanently” ); Header( “Location: http://www.new-url.com” ); exit(); ?>
READ the rest here: http://www.howto301redirect.com/php-301-redirect/You need to stop copying information from other websites without crediting those sites.
|