Skip to main content

URLs with Double Slash

URLs with paths which contain two or more slashes next to each other. i.e. https://www.example.com//path

Priority: Low

Impact: Neutral

What issues it may causeโ€‹

URL formats do not generally use a double slash which could indicate the URL was created by a malformed link.

The URL will be treated as a unique URL and may result in a duplication of the same URL without the double slash.

How do you fix itโ€‹

  1. Identify if there are internal links to URLs with a double slash and correct them.
  2. Check that canonical URLs on the URLs with the double slash do not include the double slash.
  3. Redirect URLs with a double slash to the single slash.

What is the positive impactโ€‹

  1. Reducing the amount of duplicate pages in search engine's indexes can save crawl budget for more important pages and avoid the dilution of PageRank helping the remaining pages to rank better.

  2. Canonicalised or redirected pages will be crawled less often, improving crawl efficiency and saving on server costs.

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
url
description
foundAtUrl
deeprank
level
canonicalLinksInCount
linksInCount
canonicalizedPage
isSelfCanonical
foundInGoogleAnalytics
foundInGoogleSearchConsole
foundInBacklinks
foundInList
foundInLogSummary
foundInWebCrawl
foundInSitemap
}
}
}
}
}
}

Try in explorer