PHP Redirect HTTP/1.1 301 Moved Permanently index.php script

To create permanent redirect with php is very easy task. All what needs to be done is the create file index.php in your root directory of the site which you want to redirect from with following content:
<?
Header( “HTTP/1.1 301 Moved Permanently” );
Header( “Location: http://www.yoursitetoredirect.com” );
?>
Here you can test your php  301 Moved Permanently redirect.