How to setup a 301 Redirect

Background Image

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
%>

Share this article

50 thoughts on “How to setup a 301 Redirect”

  1. Thanks for such an informative post.

    It helped me much.

    Cheers,
    Togrul

    Reply
  2. 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.

    Reply
  3. 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.

    Reply
  4. 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. 😉

    Reply
  5. 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?

    Reply
  6. 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?

    Reply
    • @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 😉

      Reply
  7. 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

    Reply
  8. 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!

    Reply
  9. 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!

    Reply
  10. 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?

    Reply
  11. Thank you for the tip 🙂 You’ve inspired me to bring my .htaccess file up to speed.

    Reply
  12. very good and i will apply some of them to my site

    Reply
  13. 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

    Reply
  14. Thanks for your nice tips, Daniel.

    Reply
  15. 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.

    Reply
  16. 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.

    Reply
  17. The code to go the other direction is above under “PHP Canonical Redirect”.

    Thanks again!

    Reply
  18. 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.

    Reply
  19. 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.

    Reply
  20. thanks a lot for this tip. Will use it on all of my sites from now on.

    Reply
  21. ..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.

    Reply
  22. Yey 😀 been wanting to know how to do this for a while now

    Reply
  23. do the redirecting through the net for me

    Reply
  24. Thanks Daniel for the article and the help via IM. Got it done through .htaccess file.

    Reply
  25. 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???????????????

    Reply
  26. Thanks for the useful info! I used your advice to easily setup a 301 on our design site!

    Reply
  27. 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’,’

    Reply
  28. ricacelcaal

    Reply
  29. thanx bro.. i search many at google.. but your tips is better..

    Reply
  30. Great article!
    But I do have a question about the www or no www
    Where exactly do I add this code? .htaccess file?

    Reply
  31. 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?

    Reply
  32. 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.

    Reply
  33. 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?

    Reply
  34. 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?

    Reply
  35. 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.

    Reply
  36. I tried the plugin,but it took down the blog.
    i tried the php one, but it didnt work. can you explain in detail?

    Reply
  37. 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:

    Reply
  38. 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?

    Reply
  39. Put it in the beginning, but it should not matter.

    Reply
  40. Yes, Canonical redirect. Where in header? at the beginning, middle or end?

    Reply
  41. Which one, the PHP Canonical redirect?

    This one go on the header.php file on your theme.

    Reply
  42. I couldn’t understand the second method, ie non-www to www redirect. Where should I place the code? .htaccecss?

    Reply
  43. What should I do if my virtual host provider do not configure IIS to do redirect for me? My host use html+asp.

    Reply
  44. 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.

    Reply
  45. 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.” 🙂

    Reply
  46. 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

    Reply
  47. 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.

    Reply
  48. Lionel, that is a good way to solve the problem of redirecting single files without affecting the whole website, thanks for sharing.

    Reply

Leave a Comment