Today it’s common to have a single web site but multiple URLs which you want funnel visitors from.  For example if you’ve purchased .Net and .Org variations of your domain name you want visitors to see your .Com web site, even if they type in the .Net URL.

You also might want to provide a short URL for advertising purposes.  For example http://www.mydomain.com/specials/contests/spring-2011/ might have the details of a contest you are running.  Having a shorter URL such as http://mydomain.com/contest/ makes it easier to work into promotional materials and for visitors to remember and enter.

The goal of redirecting traffic is to ensure visitors get where they should go, as quickly as possible, as reliably as possible, without confusing search engines.

Why Copies Are Bad

In the above example you could just configure the domains to point to your web server and have all of them return the same content directly.  As far as search engines are concerned this makes all three (.Net, .Org and .Com) copies of each other with no clear ‘real’ site.  Per the contest example, the same would be the case if you were to copy the contest details from /specials/contests/spring-2011/ into a directory called /contest/ on your web server.

Copies of content are a problem because Google and other engines penalize sites which appear to have duplicated content.  Here is why:

Search engines are in a battle with Content Farms which produce “popular content” and then distribute it across multiple sites in an effort to manipulate search engine results.  The ultimate goal is to drive traffic to these sites which have no original content (and are thus easy to manufacture on a large scale, increasing traffic).  Traffic means advertising dollars for these Content Farms.

Usually this content is of very little value to the visitor.  Search engines don’t like providing links of little value because it undermines their own value.  Google very recently updated their anti-content farm logic.  Expect more and more of this as time progresses and the Content Farms try to evade.  Much like email spam filtering, this cat and mouse game is here to stay.

Redirecting your visitors using 301s avoids your site getting into the crossfire of this battle.  301s clearly tell search engines (and your visitors) that the content they’re looking for is actually located somewhere else — and where it is.

301s Are Google Approved and Visitor Friendly

Given the above problems, 301 redirects are at the top of Google’s recommendations for redirecting visitors.  Furthermore 301s are the accepted industry best practice, and should be honored by all other search engines as well.  They are also honored by browsers, web crawlers and other tools — anything that supports HTTP 1.0 will support them.  In the year 2011, that is everything, possibly including your refrigerator.

301s also have the added benefit of being extremely fast, cutting load time drastically.  So they’re not only easy to put in place on your server (one rule should do it!), but are the fastest and most compatible solution.

Be In Control of Your URLs

In the link to Google’s recommendations they say that copies which don’t appear to be malicious will be ignored.  Usually this is the ‘newer’ domain or link.  Here are problems with relying on this:

  • Google will be increasing the pressure on Content Farms as time passes.  Rules will be tightened; relying on being exempt might backfire one day.
  • If you do get flagged and/or blacklisted by accident there is essentially no recourse.  You can’t call Google and complain about your unfair ranking.
  • You the web master need to be in control over which site is your ‘real’ site, not Google. Redirecting with 301s establishes this clearly.  This ensures your “ranking juju” is attributed to one domain.

What Exactly Are ‘301s’?

When a visitor or a search engine asks for a URL the server normally returns a 200 code, followed by the requested page.

The 301 code is the web server response for “Moved Permanently”.  It tells the requestor that the content they are looking for has moved, and provides the new URL instead of the content itself.  The requestor will then try this new URL (the destination of the 301).  For a web browser this is a quick and seamless sequence of events.  It also is reflected in the browser’s address bar, which will change to the destination URL.

Other Techniques to Avoid

In addition to copies there are other ways to shift visitors around but they all have drawbacks compared to 301s.

  • 302 Redirects – Much like 301s they point visitors to a new URL.  However 302 is the code for “Moved Temporarily” and should be avoided as they may be indexed.  Google is pretty good about handling these but other engines are not.
  • JavaScript Redirects – These are slower since two full pages need to be sent to the visitor and loaded before they see what they are looking for. It can be confusing to search engines which might not follow the redirect at all (since search engines generally don’t run JavaScript).  Because of this, JavaScript redirects have become a common technique for tricking search engines by having them index a page, but when a real visitor arrives they are taken somewhere else.  Google and others are starting to penalize for this.  Don’t risk it.
  • Meta Refresh Redirects – Same issues as JavaScript redirects.
  • Domain Aliases – I put this in there because I have seen this term used and has caused much confusion.  “Domain Alias” can mean any form of redirection or copy.  It’s a non-descriptive, non-technical term that should not be used.  Commonly web hosting control panels will use this term to refer to 301 redirects but don’t assume this is the case — find out (see the tool below).  Hosting companies use this term to make things easier to understand for non-technical users, in this case we need to know what is going on for sure ‘under the hood’.

Are the above techniques inherently ‘evil’ and bad to use?  Of course not.  They have their places and uses.  But bulk redirection of public traffic should not be one of them.

Checking Your URLs or Secondary Domains

Curious to see how a URL is being handled currently? SeoConsultants.com has a great tool to let you see where a URL ultimately leads and how.

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.