Google and the Canonical Link Rel
Google has introduced a link tag rel value of canonical which is used for defining the value of the page that Google should use. Why? Lets say you have an eCommerce site and one of the product URLs is:
http://yoursite.com/product.php?p=david+walsh+blog+book
Imagine now that you can make a slight customization to the product that changes the URL to:
http://yoursite.com/product.php?p=david+walsh+blog+book&color=red
Uh oh -- Google sees duplicate content! The code shows essentially the same page so Google thinks you're pulling gangsta stuff. Now you can tell Google what URL to use for the current page to avoid duplicate content penalization.
The XHTML
<link rel="canonical" href="http://yoursite.com/product.php?p=david+walsh+blog+book" />
Don't let your website get penalized by Google; use this link/rel tag combination for your highly variable pages.
![I’m an Impostor]()
This is the hardest thing I've ever had to write, much less admit to myself. I've written resignation letters from jobs I've loved, I've ended relationships, I've failed at a host of tasks, and let myself down in my life. All of those feelings were very...
![Introducing MooTools Templated]()
One major problem with creating UI components with the MooTools JavaScript framework is that there isn't a great way of allowing customization of template and ease of node creation. As of today, there are two ways of creating:
new Element Madness
The first way to create UI-driven...
![Shake Things Up Using jQuery UI’s Shake Effect]()
Yesterday I created a tutorial showing you how you can shake an element using Fx.Shake, a MooTools component written by Aaron Newton. It turns out that jQuery UI also has a shake effect which can draw attention to an element.
The XHTML
Exactly the same as...
![Reverse Element Order with CSS Flexbox]()
CSS is becoming more and more powerful these days, almost to the point where the order of HTML elements output to the page no longer matters from a display standpoint -- CSS lets you do so much that almost any layout, large or small, is possible. Semantics...
Note that the All-in-one SEO WP plugin does this for you. Good to know should you bloggers be worried.
I think the article could have given a bit more info on canonical urls…
@Adriaan: Thank you for your comment. I could have but my fear is spending a ton of time on an explanation when 99% of people would prefer a brief explanation with a sample problem and solution like I provided. I appreciate your honesty!
OK, I had to go to Google to find out where in the document this LINK goes… But this is good info, thanks for the the tip. Google implies that some other search engines look at this too.
time to google for more about canonical ;)
Cool information!
Liked the posts about firefox extensions too, really useful for beginners on that world.
ps: you forgot to close the link tag.
Add this code to the section of the page.
< head >
< title > Davidd Walsh Blog Book< /title >
< link rel=”canonical” href=”http://yoursite.com/product.php?p=david+walsh+blog+book” />
< /head >
@Fabio, No missing < /a > tag as its a < link .. >
Good I want to implement it first and have post this tips. Thanks
great post is there any problem if i use rel tag for all of my links
David,
Thanks for the tip about rel canonical.
Peter
You can find more info here: http://support.google.com/webmasters/bin/answer.py?hl=en&answer=139394
Thanks for the article.