---
title: "Detect cannibalization"
description: "Multiple pages ranking for the same query dilute each other. Find every affected keyword and pick the winner."
canonical_url: "https://nuxtseo.com/pro/docs/workflows/detect-cannibalization"
last_updated: "2026-05-06T21:33:08.100Z"
---

Two pages ranking for the same query means Google's splitting the authority between them. Neither wins. Pick one, redirect the other.

## From the dashboard

**Search Console → Queries → click a keyword**. If multiple URLs show up, that's cannibalization.

The detail view lists every ranking URL with clicks, impressions, and position, so you can pick the winner on data not intuition.

## From MCP

```ts
gsc_query({
  type: 'keyword-detail',
  keyword: 'nuxt meta tags',
  period: '28d',
})
```

Ask Claude Code:

> Find queries where more than one of my pages ranks in the top 30. Rank by total impressions lost to the split.

## Picking the winner

When two pages compete:

1. **More clicks** wins, usually. It's the page Google already prefers.
2. **Better position** is next. If both get similar clicks, take the higher rank.
3. **Intent fit** breaks ties. An article page beats a category page for informational queries, and vice versa for commercial.

## Fixing it

- **Consolidate**: merge the loser's unique content into the winner, then 301 redirect.
- **Disambiguate**: if both pages should exist, differentiate the targets. Change the loser's title and H1 to a related but distinct query. Update internal links.
- **Noindex** the loser if it's genuinely duplicative filler (tag pages, thin categories).

Wait 2-4 weeks after the fix, then re-check. Cannibalization can take a full recrawl cycle to resolve.

## False positives

Not all multi-URL results are cannibalization:

- **Brand query + different intents** (e.g. "nuxt SEO pricing" vs "nuxt SEO docs"): expected, leave alone.
- **Low impressions on the loser**: Google's guessing; below ~20 impressions per month is noise.

## Related

- [Audit a page](/pro/docs/workflows/audit-page) to diagnose why the loser is ranking.
- [Keyword cannibalization explainer](/learn-seo/keyword-cannibalization) for a deeper dive.
