WriteMySEO / Blog / The Canonical Tag Is a Hint, Not an Instruction
SEO technology

The Canonical Tag Is a Hint, Not an Instruction

Google treats rel=canonical as one signal among several when picking which URL to index. Understanding what overrides it explains most canonical problems.

rel="canonical" is routinely described as telling Google which URL to index. It does not tell Google anything. It suggests, and Google decides — weighing your suggestion against several other signals that can and do override it.

Nearly every confusing canonical situation resolves once you internalize that.

What Google weighs

When several URLs serve similar content, Google selects a canonical from the set using signals including:

If your canonical tag points at URL A while every internal link and your sitemap point at URL B, you have sent conflicting signals and Google may reasonably pick B. Search Console will then report "Duplicate, Google chose different canonical than user," which is not a bug — it is Google telling you your signals disagree.

The common errors

Canonical to a page with different content. If page A canonicals to page B and their content differs substantially, Google will likely ignore it. Canonicals are for duplicates and near-duplicates, not for consolidating pages you wish were one page.

Canonical chains. A canonicals to B, B canonicals to C. Google may follow one hop; multi-hop chains often break. Point every variant directly at the final target.

Relative URLs with a broken base. A relative canonical resolves against the page URL or a <base> tag. On pages served at multiple paths, this can silently resolve differently per path. Use absolute URLs.

Canonical on paginated pages pointing to page one. Page two is not a duplicate of page one. Self-referencing canonicals on each paginated page is the current correct pattern.

Conflicting with noindex. A page that is both canonicalized to another URL and marked noindex sends contradictory instructions — the canonical says "consolidate signals into that page," the noindex says "drop this page." Behavior is unpredictable. Pick one.

Canonical injected by JavaScript. May be honored, but if the raw HTML contains a different canonical, resolution is unpredictable. Put it in the server response.

Cross-domain canonical for syndication. Legitimate and correct when a partner republishes your article: their copy canonicals to yours. Frequently omitted, which is how syndicated copies end up outranking originals.

When to use what

SituationUse
Same content, multiple URLs, all should stay accessiblerel="canonical"
Content permanently moved301 redirect
Content temporarily elsewhere302 redirect
Page must exist but should not be indexednoindex, follow
Genuinely different content on both URLsNeither — differentiate them
URL space you never want crawledrobots.txt disallow

The row people get wrong most often is the first versus the second. If the old URL does not need to remain reachable, a 301 is stronger, unambiguous, and consolidates signals more reliably than a canonical tag.

Reading Search Console's verdict

The Page Indexing report tells you what Google actually chose. Three states matter:

"Duplicate, Google chose different canonical than user" — your declared canonical was overruled. Inspect the URL to see what Google picked, then look for the conflicting signal. Almost always internal links or the sitemap.

"Alternate page with proper canonical tag" — working as intended. The page is a recognized duplicate and its signals are consolidated. Not a problem to fix.

"Duplicate without user-selected canonical" — you declared nothing and Google picked. Add explicit canonicals so the choice is yours.

The check that catches most of it

For any page you care about, verify these agree:

  1. The canonical tag in the raw HTML response
  2. The URL your internal links point to
  3. The URL in your sitemap
  4. The URL that actually loads without redirecting

When all four match, canonicalization is not your problem. When they do not, the mismatch is the problem, and no amount of canonical tag adjustment fixes it while the other three disagree.

This is a ten-second check per page and it resolves the overwhelming majority of canonical confusion — because the tag was rarely the thing that was broken.

canonicalduplicate contentindexing

WriteMySEO produces marketing content, not legal, medical, financial, or compliance advice. Figures cited reflect publicly reported industry data at time of writing and shift over time.

Get started

We write this well about your industry, every month.

AI-drafted, human-reviewed SEO content on a flat subscription. Blog posts, metadata, schema, and internal links, shipped on a monthly rhythm.

See plans

More from the blog