XML sitemap
A sitemap lists the URLs you want indexed, so crawlers do not have to find them by following links. What to include, and what to leave out.
What it is
An XML sitemap is a file listing the URLs on a site that its owner considers worth indexing, optionally with the date each was last modified. This check requests /sitemap.xml and asks whether the server returns it.
It is a hint, not an instruction. Listing a URL does not guarantee indexing, and omitting one does not prevent it — a crawler that finds a page by following a link will still consider it.
Why it matters
Link discovery has a blind spot: a page nothing links to yet is a page a crawler has no path to. That describes most new content, and every page on a site whose internal linking has gaps. A sitemap closes it directly.
The lastmod date is the part people get wrong. Stamping today's date on every URL every time the file is generated tells a crawler the whole site changed today, every day — which is not a freshness signal, it is noise, and a sitemap that cries wolf about every URL is one a crawler learns to discount. Set it from when the content actually changed, or leave it out.
How to fix it
with a reference doc<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<url>
<loc>https://example.com/</loc>
<lastmod>2026-01-01</lastmod>
</url>
</urlset>Sitemap: https://example.com/sitemap.xmlRelated checks
4This is one of the 75 checks the scanner runs. See what we check for the full list, every severity weight, and how the score is computed from them.