We respect your privacy.

We use strictly necessary cookies to keep you signed in and to protect against CSRF. With your permission we also use a small amount of first-party analytics to improve the product. We do not sell your data and we do not use third-party advertising trackers. See our cookie policy and privacy policy .

← All learn topics

Rule site.duplicate-titles

De-duplicate page titles

site.duplicate-titles is a check in Crawlmind's site audit that grades medium-impact issues of this kind. This page explains why the rule matters and the exact fix.

Impact: mediumEffort: medium

Why it matters

Multiple pages with the same `<title>` are a strong signal to search engines that the pages are near-duplicates: they'll consolidate them, picking one as canonical and dropping the rest. AI assistants downgrade their citation confidence the same way. Differentiate every title with the section, product, or topic.

The fix

```html
<!-- Before: every product page shares the same title -->
<title>Products: Brand Name</title>
<title>Products: Brand Name</title>
<title>Products: Brand Name</title>

<!-- After: each page disambiguates the product name -->
<title>Crawlmind Audit: Brand Name</title>
<title>Crawlmind Citation Tracker: Brand Name</title>
<title>Crawlmind Code Fixes: Brand Name</title>
```

References