Recent Posts
- Quick Code: Get the domain name in JS
- Things to think about when designing a logo
- Javascript Array Functions
- Integrating FCKEditor to save current content with AJAX using PHP
- Pad A Javascript Number
- Why use heading tags as opposed to font tags for displaying text in HTML?
- Creating One Time Download Links
- Why Javascript in Forms is Bad
- Five Things To Remember When Designing Accessible Web Pages
- Sizing Images Correctly – Part Two
Topics
Use the Canonical
Over the past few weeks all the major search engines have announced support for a new link element to help clean the web of duplicate URL’s. This new element allows site owners to specify the default URL for any page to help avoid duplication.
Duplicate content can be a big problem for some sites as nearly all content can be accessed using different URL’s and leads to Page Rank can being diluted. Think of the following URL’s that all access the same content:
- http://www.example.com/
- http://example.com/
- http://www.example.com/index.html
- http://example.com/index.html
Even this post can be accessed through a different URL. There are then other times when additional data is passed in the URL that results in different URL’s for the same content, think about:
- Session ID’s
- Sorting results by ascending/descending
- Tracking code – analytics and landing pages
All these cases result in multiple URL’s pointing to the same content. This can result in a worse Page Rank for your site as your content becomes diluted and people linking to you link to several different URL’s – resulting in a lower number of incoming links to the page, which in result….lowers your “Google juice”.
Setting the Canonical
The newly supported link element allows the site owner to specify the correct URL for the page and is very easily done.
<link rel="canonical" href="http://www.webvamp.co.uk/blog/seo/use-the-canonical/" />
All you need to do is place this into your <head> section and the search engines can use it to better index your site.
You can read more about this on Google, Yahoo, Microsoft and Ask’s blogs.
Be the first to add your voice to this post!
Start the discussion and leave your views or thoughts by writing a comment using the form above.