
What this check flags
This groups two or more URLs that render the identical <title> string. Unlike the meta description, the title tag is a ranking and relevance signal, so when the same title sits on multiple pages you blur which URL Google should rank for a query — the pages compete with each other, and the SERP shows a wall of look-alike blue links.
A real failing example
A blog running paginated category archives leaked the same title across every page of the series:
/blog/seo/ <title>SEO Articles | Acme</title>
/blog/seo/page/2/ <title>SEO Articles | Acme</title>
/blog/seo/page/3/ <title>SEO Articles | Acme</title>Same title, three URLs, all fighting for the same term. The fix depends on the cause. For pagination, append the page number so each is distinct; for genuinely different pages that happen to collide, rewrite the templated title to pull a real per-page variable:
/blog/seo/ <title>SEO Articles & Guides | Acme</title>
/blog/seo/page/2/ <title>SEO Articles | Page 2 | Acme</title>
/blog/seo/page/3/ <title>SEO Articles | Page 3 | Acme</title>
<!-- templated product titles, now variable-driven -->
<title>{{product}} — {{color}} | {{brand}}</title>If two URLs are true duplicates of the same page, don't rewrite the title — pick a canonical and redirect or rel=canonical the loser. That is a consolidation problem, not a titling one.
Title clash, by cause
| Cause of the duplicate title | Right fix |
|---|---|
| Paginated archive (page 2, 3, …) | Add "Page N" to the title |
| Template with no per-page variable | Wire in product/city/category variable |
| Two URLs = same page (www + non-www, params) | Canonicalise or 301 to one URL |
| Two real pages targeting one keyword | Retitle around distinct intent, or merge |
| Missing title, CMS falls back to site name | Populate the title field |
How to detect it on your own site
- Screaming Frog: crawl, open the Page Titles tab, set the filter to Duplicate. Group the export by URL pattern — paginated series and un-wired templates jump out immediately.
- Sitebulb: the Page Titles report flags "Duplicate page title" with the clusters pre-grouped and a severity hint.
- Google Search Console: pull Performance and look for one query where several of your own URLs trade impressions — that flip-flopping is the fingerprint of two pages with the same title cannibalising each other.
- Manual: run a
site:yourdomain.com "your exact title text"search and count how many of your own results carry it.
How to fix it
- Separate the two situations first: same title on different pages (retitle) vs same title on duplicate pages (consolidate).
- For distinct pages, rewrite titles around the actual differentiator — product attribute, location, or search intent.
- For pagination, add the page number so component pages are unique.
- For true duplicate URLs, canonicalise or 301 to the winner and stop trying to title your way out of it.
- Re-crawl and confirm the Duplicate title count in Screaming Frog is zero.
How the title interacts with self-cannibalisation
The reason a duplicate title matters more than a duplicate description is that Google reads the title as a topic declaration. Give two URLs the same declaration and you have told the search engine, in its own preferred signal, that these pages are about the same thing. It then has to guess which one deserves the query, and it can guess differently from day to day.
You see this in Search Console as one query whose landing page keeps swapping between two of your URLs, with neither holding a stable position. Each page collects some impressions, neither collects enough authority to break into the top few, and your own pages hold each other back. Rewriting one title around a distinct angle — a different modifier, a different intent, a narrower topic — often lets one page climb while the other settles onto its own terms.
Before you rewrite, pull the query data and check what each page actually ranks for. Sometimes the "duplicate" is really two pages competing for one keyword that should be a single page; sometimes it is two pages that each own a real query and just happen to carry a lazy shared title. The data tells you whether the answer is retitle or merge, and guessing wastes the edit.
Related checks
If the descriptions duplicate alongside the titles, read URLs with duplicate meta descriptions, and when both collide on the same URL pair, same title and meta description. A separate but related tag bug is multiple title tags on one page. When the underlying pages are truly identical, jump to exact same content or the canonical tag glossary.
FAQ
Are duplicate title tags a ranking problem or just a snippet problem?
Both. The title is a relevance signal, so duplicates blur which page Google should rank for a term and can trigger self-cannibalisation, on top of a weaker SERP snippet.
Do paginated pages really need unique titles?
Adding "Page 2", "Page 3" is the clean fix. It makes each component URL distinct and stops the whole series reading as one duplicated title in a crawl.
Google rewrote my title in the SERP — does that fix the duplicate?
No. Google may rewrite the displayed title, but the underlying tag is still duplicated in your HTML and still confuses which page to rank. Fix the source.
Two of my pages target the same keyword with the same title — merge or retitle?
If they serve the same intent, merge them and 301 one. If they serve genuinely different intents, retitle each around its own intent so they stop competing.
Is a duplicate title worse than a duplicate description?
Generally yes, because the title carries ranking weight and the description does not. A duplicate title can cause cannibalisation; a duplicate description mostly costs clicks.
Claude Vincent is a technical SEO consultant focused on crawlability, rendering, and AI-search visibility. He writes the field guides and case studies at SEO ProCheck, with a bias toward the durable, unglamorous work that decides whether search engines and AI answer engines can actually read and cite a site.
About SEO ProCheck
Technical SEO consulting and GEO strategy with 20 years of enterprise experience. Case studies, resources, and tools for search and AI visibility.
Work With Me
Technical SEO audits, GEO strategy, site migrations, and international SEO. Hourly consulting for teams who need hands-on support, not just reports.







