Seoxpert.io
highTechnical SEO

Pages with noindex AND a Canonical Pointing Elsewhere

A page has both a noindex directive and a canonical tag pointing to a different URL, creating conflicting SEO signals.

By Seoxpert Editorial · Published

Why it matters

This conflict confuses search engines: noindex requests removal from the index, while a canonical tag suggests consolidating signals to another URL. Google ignores the canonical in this case, but the contradictory intent often signals a misconfiguration that can harm SEO or cause unexpected indexing behavior.

Impact

If unresolved, the page may be excluded from search results and intended canonicalization will not occur.

How it's detected

An automated crawler detects this when it finds both a noindex directive and a canonical tag referencing a different URL in the same page's source.

Common causes

  • Copy-pasting meta tags without updating for the new page's intent
  • Misunderstanding the difference between noindex and canonical tags
  • Attempting to both remove a page from search and consolidate its signals
  • CMS or plugin misconfiguration
  • Outdated SEO instructions or templates

How to fix it

Review the page's purpose: if you want to consolidate its signals to another URL, remove the noindex directive and keep the canonical tag. If you want the page excluded from search entirely, remove the canonical tag or make it self-referential, and keep the noindex. Update the HTML <head> accordingly and re-crawl the page to verify the fix.

Code examples

Problem: Both noindex and canonical to another URL

<head>
  <meta name="robots" content="noindex">
  <link rel="canonical" href="https://example.com/other-page">
</head>

Fix 1: Consolidate to another URL (remove noindex)

<head>
  <link rel="canonical" href="https://example.com/other-page">
</head>

Fix 2: Exclude from search (remove or self-canonicalize)

<head>
  <meta name="robots" content="noindex">
  <link rel="canonical" href="https://example.com/this-page">
</head>

FAQ

Why does Google ignore the canonical tag if noindex is present?

Because noindex tells Google to remove the page from the index, so canonicalization is irrelevant in that context.

Should I ever use both noindex and a canonical to another URL together?

No, these directives conflict. Use one based on your desired outcome: exclusion or consolidation.

How do I decide which directive to keep?

If you want the page's signals consolidated, keep the canonical. If you want it excluded from search, keep the noindex.

What happens if I leave both directives on the page?

The page will be excluded from search and the canonical will be ignored, so consolidation won't occur.

Found this issue on your site?

Run a scan to see if Pages with noindex AND a Canonical Pointing Elsewhere affects your pages.

Scan my website →