301 Redirect PHP
How to do a 301 redirect in PHP. Remember to add right at the top of your code, before anything is sent to the browser.
<?php
header( "HTTP/1.1 301 Moved Permanently" );
header( "Location: http://www.secondsighting.co.uk" );
?>
This tells the visitor’s browser, and any search engine that visits the page, that it has moved permanently to the specified URL.

