Skip to main content

Pages with Duplicate Titles excl Duplicate Pages

Priority: None

Impact: Neutral

What issues it may causeโ€‹

Search engines might show only a single page from the set which share the same title which might not be the preferred one.

Search engines might generate a title for each page which might not be optimized for a good click-through-rate and may omit a brand reference.

If the titles are not providing specific information to differentiate each page then it may not be effectively targeting the full range of search queries the page is optimized for.

How do you fix itโ€‹

Make the titles more descriptive and unique for each page.

What is the positive impactโ€‹

Well crafted and written page titles which describe the content and cover the range of search queries the page is optimized for can result in better rankings and higher click-through-rates from search results pages to your website effectively increasing traffic to your website for the same ranking positions.

How to fetch the data for this report templateโ€‹

You will need to run a crawl for report template to generate report. When report has been generated and you have crawl id you can fetch data for the report using the following query:

query GetReportForCrawl($crawlId: ObjectID!, $reportTemplateCode: String!) {
getCrawl(id: $crawlId) {
reportsByCode(
input: {
reportTypeCodes: Basic
reportTemplateCodes: [$reportTemplateCode]
}
) {
rows {
nodes {
... on CrawlUrls {
pageTitle
description
url
duplicateTitlePrimaryUrl
foundAtUrl
duplicateTitleCount
deeprank
level
duplicateTitleCount
duplicatePage
duplicateTitle
duplicateDescription
duplicateBody
foundInGoogleAnalytics
foundInGoogleSearchConsole
foundInBacklinks
foundInList
foundInLogSummary
foundInWebCrawl
foundInSitemap
}
}
}
}
}
}

Try in explorer