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” );
?>
Filed under: Programming | Tagged: 301, Moved Permanently, php, redirect, script