“301″ Redirects for SEO
{ January 4th, 2008 }
Search engines will often regard www.example.com and example.com as two different websites. Because of this, websites usually experience the effects of link fragmentation (inbound links point to both www.example.com and others to example.com). For example, if www.example.com has 5,000 inbound links and example.com has 2,500 inbound links you could potentially combine them so you have all 7,500 links pointing to www.example.com.
To do this you can setup a permanent “301″ redirect by creating a .htaccess file with the below code. This will ensure that all requests coming in to example.com will get redirected to www.example.com.
Options +FollowSymlinks
RewriteEngine on
rewritecond %{http_host} ^example.com [nc]
rewriterule ^(.*)$ http://www.example.com/$1 [r=301,nc]
Notes:
- The .htaccess file needs to be placed in the root directory of your old website (i.e the same directory where your index file is placed)
- REPLACE example.com and www.example.com with your actual domain name in the code above
- This .htaccess redirection method only works on servers using the Apache Mod-Rewrite module
This “301″ redirect method is also a great way to save money on SSL certificates. When the site always points to www.example.com you can by just one SSL certificate.
Categories: Website Design ~ Tags: .htaccess, redirects, SEO, SSL ~ Trackback










January 14th, 2008 at 6:54 am
It is really very helpful in terms of SEO. Great article Sir!
January 22nd, 2008 at 7:27 am
Hi,
Nice post on 301 redirect, i like the post and importance of redirecting ages through this method. i m confused if i use refresh command then will it not work.
January 22nd, 2008 at 12:05 pm
@Sunita
The site is redirected on the server side, so refreshing the browser wouldn’t matter.
January 23rd, 2008 at 8:32 am
I remember using 301 redirect on my client’s site before. It is really a big help on SEO. But of course, you should know when is the right time to use it. :) Thanks for the information.
March 23rd, 2008 at 10:42 pm
does anyone knows if there is any other information about this subject in other languages?