Seoxpert.io
highTechnical SEO

Noindex Pages Canonicalized to Different URLs

This issue occurs when a page is marked with both a noindex directive and a rel="canonical" pointing to a different URL. This creates conflicting signals for se

By Seoxpert Editorial · Published · Updated

Why it matters

Search engines may not know whether to exclude the page from the index (noindex) or to treat it as a duplicate and consolidate signals to the canonical URL. This can result in unpredictable indexing, loss of ranking signals, and poor control over which URLs appear in search results.

Impact

Pages affected by this issue may be dropped from the index, or search engines may ignore the canonical directive, leading to duplicate content issues or loss of SEO value. It undermines your ability to manage which pages are indexed and how link equity is distributed.

How it's detected

This issue can be detected by crawling the site with SEO tools (like Screaming Frog, Sitebulb, or Google Search Console) and identifying pages that have both a noindex directive (meta robots or X-Robots-Tag) and a rel="canonical" pointing to a different URL.

Common causes

  • Pagination pages (e.g., /page/2) set to noindex but canonicalized to the main page (e.g., /page/1)
  • CMS or SEO plugin misconfiguration causing both directives to be applied
  • Automated rules that blanket-apply noindex and canonical tags to certain templates
  • Manual errors in template or page-level SEO settings

How to fix it

For each affected page, decide on the correct indexing strategy. If the page should not be indexed, use only the noindex directive and remove the canonical tag. If the page is a duplicate and should consolidate signals, use only the canonical tag and ensure the page is indexable. Do not use both on the same page.

Code examples

Incorrect: Noindex and Canonical to Different URL

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

Correct: Only Noindex (for pages to be excluded from index)

<head>
  <meta name="robots" content="noindex">
</head>

Correct: Only Canonical (for duplicate pages to consolidate

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

FAQ

Why is it a problem to use noindex and a canonical to a different URL together?

Because noindex tells search engines not to index the page, while a canonical tag to a different URL suggests the page is a duplicate and signals to consolidate ranking signals to the canonical URL. This creates ambiguity and search engines may ignore one or both directives.

What will Google do if both noindex and a cross-domain canonical are present?

Google's response is not guaranteed. Sometimes Google may honor the noindex and drop the page, ignoring the canonical. Other times, it may ignore the noindex and treat the canonical as the preferred signal. The behavior is unpredictable and can change over time.

How can I find pages with both noindex and canonical to a different URL?

You can use SEO crawling tools to extract both meta robots and canonical tags from your pages. Filter for pages that have noindex and a canonical tag whose href does not match the current page URL.

Should paginated pages use noindex and canonical together?

No. For paginated series, use rel="next" and rel="prev" (if supported) or allow them to be indexed with self-referencing canonicals. Do not combine noindex with a canonical to page 1, as this can cause loss of valuable content from the index.

Can I use noindex with a self-referencing canonical?

Yes, if you want to ensure the page is not indexed but still declare itself as the canonical version. However, this is rarely useful. The main issue is when noindex is combined with a canonical to a different URL.

Found this issue on your site?

Run a scan to see if Noindex Pages Canonicalized to Different URLs affects your pages.

Scan my website →