โš™๏ธ
Technical SEO
Lesson 14 of 22 ยท Crawl Control
FREE +50 XP
๐Ÿ‡ท๐Ÿ‡บ ะงะธั‚ะฐั‚ัŒ ะฝะฐ ั€ัƒััะบะพะผ

Canonical Tags

๐Ÿท๏ธ
rel=canonical explains itself
"I'm placed in the <head> of a page. I tell Google: 'This page is a copy of that one over there. Send all links and authority there.' I'm not a redirect โ€” the page stays accessible."
๐Ÿ“Œ rel=canonical โ€” an HTML tag that tells search engines which is the "canonical" (preferred) version of a page among several duplicates. It consolidates link equity without redirecting users.

Syntax and Usage

<!-- On the duplicate page /product/?color=red -->
<link rel="canonical" href="https://example.com/product/" />

<!-- Self-referencing canonical โ€”
     recommended on all pages -->
<link rel="canonical" href="https://example.com/product/" />
<!-- (placed on /product/ itself) -->

Canonical vs 301 Redirect

Criterionrel=canonical301 redirect
Duplicate stays accessibleโœ… YesโŒ No (forwards away)
Link equity passedโœ… Yes (~100%)โœ… Yes (90โ€“99%)
When to useDuplicate is still needed (filters, variants)Duplicate is not needed
Implementation effortAdd tag to HTMLConfigure on server

Common Canonical Mistakes

  • Canonical chains: A โ†’ B โ†’ C. Google may not follow to C. Always point to the final page.
  • Canonical pointing to a noindex page: contradiction โ€” Google doesn't know what to do.
  • Conflicting canonical in HTTP header and HTML: unpredictable results.
๐Ÿ’ก Self-referencing canonical: recommended on every page, even the original. This protects against accidental duplication via URL parameters.
๐ŸŽฎ Test yourself: which page should rel=canonical point to?
๐ŸŽฏ
Lesson Task
Test your knowledge and earn +20 XP
โ† Duplicate Content
Lesson 14 of 22
Go to Task โ†’