Rule site.sitemap.stale
Keep sitemap <lastmod> dates accurate
site.sitemap.stale is a check in Crawlmind's site audit that grades low-impact issues of this kind. This page explains why the rule matters and the exact fix.
Why it matters
Crawlers and AI indexers use `<lastmod>` to decide what to re-fetch. When the newest date in your sitemap is over six months old, they assume nothing has changed and revisit less often — so genuinely updated pages keep serving a stale copy to search and AI answers. Accurate `<lastmod>` is one of the cheapest freshness signals you can send.
The fix
Emit a real `<lastmod>` (ISO-8601) per URL, updated whenever the page changes:
```xml
<url>
<loc>https://example.com/pricing</loc>
<lastmod>2026-07-01</lastmod>
</url>
```
Most frameworks and CMSes can generate this from the page's real modified date — wire it to your content's `updatedAt`, not the build time (a build-time stamp makes every page look freshly changed and is ignored). For instant propagation on Bing/Copilot, also ping IndexNow when a page changes.