Alternative Methods to Implement a 301 RedirectIf you do not have access to your .htaccess file or your Windows Server Administration Panel, you can still perform 301 redirects with the code on your old pages.
If your website pages are in PHP, ASP, Java, or any other language that allows you to modify response headers, simply place code at the top of each page to do the permanent redirect.
Ex. PHP Redirect
<?
Header( “HTTP/1.1 301 Moved Permanently” );
Header( “Location:
http://www.example.com” );
?>