Skip to main content

No two indexable pages target the same primary keyword

ab-002503 · seo-advanced.link-architecture.keyword-cannibalization
Severity: lowactive

Why it matters

Two pages targeting the same primary keyword split click-through, link equity, and ranking signals — Google arbitrarily picks one to surface and suppresses the other, and the winner rotates over time so neither page builds stable authority. Common causes are legacy blog posts overlapping with new pillar pages, or tag archives competing with category pages. The result is persistent rank volatility on your highest-intent commercial queries.

Severity rationale

Low because cannibalization shifts rankings between internal pages without removing the domain from results.

Remediation

Consolidate overlapping pages into a single canonical URL and 301 the losers, or retarget each page to a distinct long-tail variant. When consolidation isn't viable, set alternates.canonical on the secondary page:

// app/blog/seo-tips/page.tsx
export const metadata = {
  alternates: { canonical: 'https://yoursite.com/resources/seo-guide' }
}

Detection

  • ID: seo-advanced.link-architecture.keyword-cannibalization
  • Severity: low
  • What to look for: Before evaluating, extract and quote the <title> tag and first <h1> from every indexable page. Count all pages and list their primary keyword/intent (derived from title, meta description, and h1). Enumerate any pages that share the same primary keyword or overlapping search intent.
  • Pass criteria: Zero pairs of indexable pages target the same primary keyword or search intent. Each page has a distinct primary keyword visible in its title and h1. Report: "X indexable pages analyzed; 0 keyword cannibalization pairs found."
  • Fail criteria: At least 1 pair of pages targets the same primary keyword or overlapping search intent.
  • Skip (N/A) when: Never — keyword cannibalization is a common issue that must always be checked.
  • Detail on fail: "2 cannibalization pairs found — /resources/seo-guide and /blog/seo-tips both target 'best SEO practices'".
  • Remediation: Consolidate cannibalized pages or give them distinct keywords and intents. In the affected page components, update the title and h1 to target distinct keywords. Use canonical tags in app/[page]/page.tsx if consolidation isn't possible.

Taxons

History