Website Redirect
Posted on January 1, 2008
Filed Under Website Redirect |
Website Redirect
Welcome to WebsiteRedirect.com. If you came here looking how to redirect websites or for a free website redirector, then you are in luck. To easily redirect a website you need to use what Google calls a 301 redirect.
There are two common ways to use a 301 redirect. The first is through a PHP code
Header( “HTTP/1.1 301 Moved Permanently” );
Header( “Location: http://www.new-url.com” );
?>
The other method is through a file called .htaccess. You should open notepad and copy paste this into it:
Options +FollowSymLinks
RewriteEngine on
RewriteRule (.*) http://www.newdomain.com/$1 [R=301,L]
Newdomain.com would be where your domain goes. There you go, now you can easily redirect websites to new ones.
If you came to this site looking to unblock sites, then I will be making a post for you as well.
Comments
Leave a Reply