How to create a 301 redirect using PHP
Create this PHP file, named index.php, with these lines of code at the top, and place it on the server.
Javascript | | copy code | | ? |
1 | <? |
2 | Header( "HTTP/1.1 301 Moved Permanently" ); |
3 | Header( "Location: http://www.new-url.com" ); |
4 | ?> |