How to setup a 301 Redirect
The “301 Permanent Redirect” is the most efficient and search engine friendly method for redirecting websites. You can use it in several situations, including:
- to redirect an old website to a new address
- to setup several domains pointing to one website
- to enforce only one version of your website (www. or no-www)
- to harmonize a URL structure change
There are several ways to setup a 301 Redirect, below I will cover the most used ones:
PHP Single Page Redirect
In order to redirect a static page to a new address simply enter the code below inside the index.php file.
<?php
header("HTTP/1.1 301 Moved Permanently");
header("Location: http://www.newdomain.com/page.html");
exit();
?>
PHP Canonical Redirect
The Canonical 301 Redirect will add (or remove) the www. prefixes to all the pages inside your domain. The code below redirects the visitors of the http://domain.com version to http://www.domain.com.
<?php
if (substr($_SERVER['HTTP_HOST'],0,3) != 'www') {
header('HTTP/1.1 301 Moved Permanently');
header('Location: http://www.'.$_SERVER['HTTP_HOST']
.$_SERVER['REQUEST_URI']);
}
?>
Apache .htaccess Singe Page Redirect
In order to use this method you will need to create a file named .htaccess (not supported by Windows-based hosting) and place it on the root directory of your website, then just add the code below to the file.
Redirect 301 /old/oldpage.htm /new/http://www.domain.com/newpage.htm
Apache .htaccess Canonical Redirect
Follow the same steps as before but insert the code below instead (it will redirect all the visitors accessing http://domain.com to http://www.domain.com)
Options +FollowSymlinks
RewriteEngine on
rewritecond %{http_host} ^domain.com [nc]
rewriterule ^(.*)$ http://www.domain.com/$1 [r=301,nc]
ASP Single Page Redirect
This redirect method is used with the Active Server Pages platform.
<%
Response.Status="301 Moved Permanently"
Response.AddHeader='Location','http://www.new-url.com/'
%>
ASP Canonical Redirect
The Canonical Redirect with ASP must be located in a script that is executed in every page on the server before the page content starts.
<%
If InStr(Request.ServerVariables("SERVER_NAME"),"www") = 0 Then
Response.Status="301 Moved Permanently"
Response.AddHeader "Location","http://www."
& Request.ServerVariables("HTTP_HOST")
& Request.ServerVariables("SCRIPT_NAME")
End if
%>
Sign-up To The Newsletter And Get A Free eBook
- Sign-up to the Daily Blog Tips newsletter and you will be able to download the "Make Money Blogging" eBook for free (worth $47).
- You will also receive tips to improve your blog, strategies to make money and useful resources from around the web.







Sometimes you need to create a dummy file if you want to do a permanent/temporary redirect. When I switched over to WordPress, I had to redirect index.html to index.php, but the .htaccess in your root folder will affect subfolders — this means your add-on and subdomains.
All my add-on domains were redirecting to the root domain, and had to create a dummy index.html in the root folder for the HTTP_HOST condition to trigger.
#Redirect only for elegantcab, and not add-on domains
RewriteCond %{HTTP_HOST} ^(www\.)?elegantcab\.com
RewriteRule ^index.html$ http://www.elegantcab.com/index.php [R=301,L,N]
So if you’re having problems, try creating a dummy file.
Lionel, that is a good way to solve the problem of redirecting single files without affecting the whole website, thanks for sharing.
Sorry if this is a repost, for some reason I pressed the “Say it!” button and I got refreshed and sent back to this page and couldn’t see my comment [you can delete my earlier comment if it goes through].
Nice work, Daniel.
I am going to use it as one of my cheat sheets now.
For WordPress users who change their permanent links [permalinks] and wish to use 301 redirects to point users, search engines and others to the new urls, Dean Lee created a migration plugin which does just that:
http://www.deanlee.cn/wordpress/permalinks-migration-plugin/
Of course, it only works on WP pages and not pages created outside of WP.
Thanks for sharing.
I want to change my permalinks from
http://www.enblogopedia.com/2007/02/10/what-ever/
to:
http://www.enblogopedia.com/what-ever/
I believe the code will be something like this:
RewriteEngine On
RewriteRule ^([0-9]{4})/([0-9]{2})/([0-9]{2})/(.+) http: //www.enblogopedia.com/$1
(of course with out the line break!)
Am I right?!
Enblogopedia, I am not sure about changing the URL structure with .htaccess. I tried it sometime ago with PHP, but it was a mess.
I will let you know if I find something online.
Well I think it`s the easiest way,
check this article. I don’t mess with my file templates..and I think the code is true but I want the “OKAY” from a prof. that`s all. :s
For the most part I’ve been trying to make sure all of my sites just have the redirect for www. to the non www. For one, it’s a lot easier and quicker to type in the non “www” and if I’m going to submit my sites to hundreds of directories, it can save a lot of time.
So, I personally go with non “www.”
wow, many many thanks. I used the .htaccess way, and it worked like a charm. now i understand why sometimes I see a google page rank of 4 and sometimes 0 on a site of mine. those nasty “wwww” makes huge difference.
i used your technique .htaccess. It worked FOR A WHILE. Occasionally, it doesn’t let me access http://www.praguebuzz.com/blog/. When I remove the .htaccess, it started working again. I put back the .htaccess, I could access the blog section, but then acted out later. The cycle continued. For now I removed the file.
Here is what I put in this file.
Options +FollowSymlinks
RewriteEngine on
rewritecond %{http_host} ^praguebuzz.com [nc]
rewriterule ^(.*)$ http://www.praguebuzz.com/$1 [r=301,nc]
thank you
test
靠,虚拟主机提供商不帮我做301重定向怎么办? 我的空间是html+asp。
What should I do if my virtual host provider do not configure IIS to do redirect for me? My host use html+asp.
Hi,
We have several domains pointing to the same web site.
For instance – http://www.abc.com, http://www.xyz.net,
http://www.efg.co.in
Our main domain name is – http://www.aaa.in
All the above mentioned domains and the main domain point to the same server… as in
there is only one folder for these domains.
How do I incorporate .htaccess in this case?
I mean I do not have separate folders for any of these domains but I want that if any one
types in “http://www.abc.com”, it should get resolved to “http://www.aaa.in”.
One of the domains is very old and is registered in search engines. I do not want to lose out on that. Am desperately looking for a solution to this problem.
I hope I have been able to explain the situation properly.
Thanks.
Regards
Ranjana
Renjana, if http://www.abc.com is pointing to http://www.aaa.in, people will already get forwarded there, there is no need to setup a 301 in that case.
Hi Daniel,
The problem is it does not get resolved to http://www.aaa.in, it stays as http://www.abc.com
As a result “http://www.abc.com” is still in the search results and “http://www.abc.com” is not getting the required exposure.
How do I tackle that?
Thanks.
Regards
Ranjana
I couldn’t understand the second method, ie non-www to www redirect. Where should I place the code? .htaccecss?
Which one, the PHP Canonical redirect?
This one go on the header.php file on your theme.
Yes, Canonical redirect. Where in header? at the beginning, middle or end?
Put it in the beginning, but it should not matter.
I don’t have an htaccess file now, and need to upload one. My FTP client, fireftp, doesnt allow upload of .htaccess file
I tried uploading a txt and renaming it to .htaccess
it didnt work either.
how can i set up htaccess redirect now?
Did you try the PHP one? If the PHP words there is no need to use an .htaccess redirect. Also there is a plugin that does this job, check this post:
http://www.dailyblogtips.com/top-10-underrated-wordpress-plugins/
I tried the plugin,but it took down the blog.
i tried the php one, but it didnt work. can you explain in detail?
TechZilo, maybe it is something related to your host then.
The easiest option now is just to go to Google Webmaster tools, verify your blog and choose a “Preferred Domain”, that way Google at least will know what version it should use.
I’m using a 301 redirect on my main blog feverishthoughts.com to include the www. The problem is that I have a few other blogs on this domain that I put in directories ie feverishthoughts.com/oddplanet. I want the directory blogs to have urls that do not contain the www because they have higher PR without the www in their urls, yet the main domain has a higher PR with the www in it’s url.
So I’ve been using the nowww plugin on my directory blogs to keep the www out of the urls. I suspect this might actually be causing a bit of a problem on a few of the blogs because now they occasionally have the primary domain thewebfiles in their url as well if it’s accessed without a trailing slash. for example the Odd Planet blog sometimes converts it’s urls to feverishthoughts.thewebfiles.com/oddplanet
I’d like to use an htaccess redirect to keep the www out my directory urls so I could avoid using the plugin. I’ve also read that the plugin might be using more cpu resource in my account and I’ve just had a terrible experience with web hosts and cpu resource over use so I want to trim down.
Do you have any idea what htaccess redirect I might use to solve my problem?
Very interesting info. However did anyone have any experience with trailing slashes at the end of subdirectory on your domain. For instance:
domain.com/folder and
domain.com/folder/
how are these treated? I saw some of people having problems with that and both pages indexed. any htaccess ideas on that?
The ASP Canonical Redirect code above is for redirecting the non-www domain name to the www domain name. What is the code if you are going the opposite direction–redirecting from the www domain name to the non-www domain name?
Also, I assume the code is placed at the top of every page before the and tags. Is this correct?
Thanks in advance for your help on this.
I have a question.
I currently work on blogger domain and will soon shift to a custom domain.301 redirect will be enough to transfer the google juice but does the same goes for Technorati?
Great article!
But I do have a question about the www or no www
Where exactly do I add this code? .htaccess file?
thanx bro.. i search many at google.. but your tips is better..
ricacelcaal
There’s an error on the ASP single page redirect.
The line that reads Response.AddHeader= should not have the =
Response.AddHeader=’Location’,'http://www.new-url.com/’ won’t work
Response.AddHeader ‘Location’,'http://www.new-url.com/’ will work
Thanks for the useful info! I used your advice to easily setup a 301 on our design site!
well recently we moved to a new domain frm googlepages free server, now the worst part is googlepages doesnt support any of the methods stated above, only option left is meta refresh and loose my pagerank, any other solution i could not find till now, can any one of you help me out???????????????
Thanks Daniel for the article and the help via IM. Got it done through .htaccess file.
do the redirecting through the net for me
Yey
been wanting to know how to do this for a while now
..really useful and informative post.
I have just successfully redirected a site by ammending a code that wasn’t working due to an error…thanks for sharing.
thanks a lot for this tip. Will use it on all of my sites from now on.
I tried doing it. But after several minutes my server went down. Internal server error. I removed the .htaccess file and it goes up again.
If you can avoid PHP or other backend level redirection if you have access to .htaccess. Not only will it be faster because you don’t have to start PHP every time someone enters or visit your blog or site with the “wrong” canonical name.
Code-level redirection is necessary only if it is application specific, or not as permanent.
http://blogbuildingu.com/articles/www-redirect-right-way
I am trying to setup a 301 redirect so everyone going from http://www.NationalRealEstateBrokers.org will go to http://NationalRealEstateBrokers.org.
Here’s the code to go the other direction:
Does ANYONE know what is code is to do what I want to do and were the code needs to be placed???
If you can help me, please email me at:
Director@NationalRealEstateBrokers.org
Thanks for your assistance!
The code to go the other direction is above under “PHP Canonical Redirect”.
Thanks again!
I have a problem
my home page or domain is a pr3 but my index is a pr5, i thought these 2 pages were the same.
How do i make all my links just go the domain or pr3 page.
http://www.speakenglish.biz pr3
http://speakenglish.biz/index.html pr5
Hi
Hey guess what i found out : Did you know that you can manually choose the domain page by going to googles webmaster page and chose the settings tab.
When I use the .htaccess method, it redirects all my non-www traffic to the homepage. That’s a big mistake.
I recommend using the PHP direct. Much cleaner. No .htaccess files to deal with, plus it’s a pitch and paste coding task. Redirect 100% better.
Thanks for the tips, Daniel.
Thanks for your nice tips, Daniel.
hi,
this is really a nice URL
I wonder if anyone could advise me on how to setup a 301 redirect page using html ?
I have some URLs with .htm extensions indexed by Google
I can only see php and asp stuff here
very good and i will apply some of them to my site
Thank you for the tip
You’ve inspired me to bring my .htaccess file up to speed.
I have done canonical redirection in ASP.
Google is treating my main page as “/” and also as “default.asp”
I mean when I log in to webmaster tools, google is saying that I have a duplicate content on two pages and pages are “/” and “default.asp”
Can anyone tell me why is it doing so?
After surfing online for an hour, I finally found an answer to my problem, tried it out and URL redirection worked like a charm. Unlike other sites I found, your article is concise, less words and straight to the point.
Some readers might find this helpful, if your launching a new website or blog, plan from the beginning if you’re going to use the root of your website or if you’re going to use a subfolder. I installed my blog (wordpress) to a subfolder, and eventually changed my mind and want to move my blog to the root directory. Fortunately there is this URL redirection thing.
Now I can finally use my main domain without typing any additional subfolders.
Nice article thank you!
After hours on the phone with technical support it seems my hosting company won’t support the use of 301 re-directs.
My site is on a Windows server and there doesn’t seem to be any way to make it work.
Now looking for a new host that uses Linux servers and has better technical support!
Moved permanently is big part of SEO. It’s elementary know-how every SEO Specialist.
Most important implementation in link building:
* allow to collect linkjuice
I am currently using the following permalink structure and am looking to change it through a HTACCESS 301 redirect but cannot find the code that works.
Currently permalink: /%year%/%monthnum%/%postname%.html
Future permalink: /%postname%
So, I want to remove the year and month from all posts and well as the .html ending.
Can someone help me?
Hi,
I am bringing in in a new website and plan on setting up 301 redirects in the .htaccess file.
Do I need to keep the OLD .html pages on the server?
Thanks for a nice tutorial. The PHP Single Page Redirect just came in handy as I created a custom 404 page for my blog and main site.
@Shannon – SKS Designs: I suggest you install Scott Yang’s Permalink Redirect plug-in. I use it on my blog and it works like a charm
Great Tutorial. The PHP code worked great but I am having some serious issues with the ASP code for another site. When applied to the default.asp page I get the following error, Microsoft VBScript compilation error ’800a0400′. So I removed the code so the site will work.
Any ideas will be greatly appreciated.
Forgot to mention that you have done a great service to all blog users and that you have great resource on your site.
Thank you and best wishes to you.
Thanks for such an informative post.
It helped me much.
Cheers,
Togrul