duplicate H1
Multiple pages sharing the same H1 weakens differentiation and rankings
What it is
crawler.sh flags pages as having a duplicate H1 when two or more pages on the same site share an identical <h1> tag. This is check #22 in the SEO analysis.
Why it matters for SEO
Duplicate H1 tags across pages create competition and confusion:
- Internal competition - When multiple pages have the same H1, search engines must guess which page is most relevant for that topic, potentially ranking the wrong one.
- Weak differentiation - Unique H1 tags help search engines understand that each page covers a distinct topic. Duplicates suggest thin or redundant content.
- Cannibalization risk - Pages with identical headings may compete against each other in search results, splitting ranking signals instead of consolidating them.
Why it matters for AEO
AI answer engines evaluate page uniqueness when selecting sources. Pages with duplicate H1 tags appear less authoritative because they suggest the site has redundant content. Unique, descriptive H1 tags help AI systems distinguish between pages and select the most relevant one.
How to fix it
Give each page a unique H1 that reflects its specific content:
<!-- Before: same H1 on multiple pages --><!-- /services/ --> <h1>Our Services</h1><!-- /services/seo/ --> <h1>Our Services</h1>
<!-- After: unique H1 per page --><!-- /services/ --> <h1>Our Services</h1><!-- /services/seo/ --> <h1>SEO Consulting Services</h1>Guidelines:
- Every page should have a unique H1 that describes its specific content
- Avoid templated H1 tags that repeat across page types (e.g., category pages all using “Products”)
- If pages have very similar topics, differentiate them or consider consolidating
- Check CMS templates that may set the same H1 across multiple pages
What crawler.sh reports
In the CLI, duplicate H1 tags appear under the “Duplicate H1” section of crawler seo output. Each affected URL is listed with the shared H1 text. In the desktop app, they appear in the SEO Issues card.
Tip: Duplicate H1 tags often indicate pages that should be consolidated. If two pages have the same heading, consider whether they serve different purposes or if one should redirect to the other.