URL Canonicalization

One of the first things discussed when beginning SEO project is the URL canonicalization. You may argue that the impact on having multiple URLs resolving to a same page may not have huge effect on SEO (if you use it consistently internally), but it certainly doesn't hurt to normalize the URL so that only one Url serves a single webpage. Implementation is not too difficult for most webmasters, and there is an evidence that URL canonicalization will have a positive effect on your SEO effort. You may use one form (www or non-www) of Url for all your internal linking, but you cannot guarangee that others will do the same on 3rd-party websites.

Search engines such as Google and Bing rank URLs, not websites or webpages. Having multiple URLs for single contents will hurt your ranking especially when Google implemented "Farmer" algorithm (February 2011) to penalize sites with duplicate contents. So, how do you canonicalize your URL? There are a couple of ways to achieve canonicalization. Suppose, we want www.webtrafficexchange.com to be the default homepage of our website. We can make our webserver so that if someone requests http://webtrafficexchange.com, we can do a 301 (permanent) redirect to http://www.webtrafficexchange.com. That helps Google know which url we prefer to be canonical.

If you have an ecommece website with a lot of GET parameters such as sort order, category ID, session ID or tracking ID for your conversion tracking; you may have single content served by various URLs like http://www.kiddietoys.com/?src=nextag&session=abc and http://www.kiddietoys.com/?src=shopping&session=xyz. To let Google or any search engines know that you have preferred url for all variation of those urls, you may use <link> tag inside the <head> tag as shown below:

Google will understand that the duplicates all others refer to the canonical URL shown above. Additional URL properties, like PageRank and related signals, are transferred as well.

What is URL Canonicalization?
URL Canonicalization (also known as URL normalization) is the process of resolving multiple URLs to a single standard URL known as the canonical name.

How does non-canonicalized URL impact your SEO?
If Google sees a page as being published at two different URLs, it may rank your pages lower than they would otherwise. Non-canonicalized URLs can split link juice between pages if people link to variants of the URL, and hence affects link popularity (or pagerank) of the URL as well as possibly affect depth of search engine crawl.

How do I resolve URL Canonicalization problem?
You can permanently redirect non-www URL to the www URL with 301 redirect. For apache web server, you can create a .htaccess file on your document root folder with the following content:

RewriteEngine On
RewriteCond %{HTTP_HOST} ^webtrafficexchange.com [NC]
RewriteRule ^(.*)$ http://www.webtrafficexchange.com/$1 [L,R=301]

Comments

Add new comment

Filtered HTML

  • Web page addresses and e-mail addresses turn into links automatically.
  • Allowed HTML tags: <a> <em> <strong> <cite> <blockquote> <code> <ul> <ol> <li> <dl> <dt> <dd>
  • Lines and paragraphs break automatically.

Plain text

  • No HTML tags allowed.
  • Web page addresses and e-mail addresses turn into links automatically.
  • Lines and paragraphs break automatically.