免费Sitemap检查器
验证您的XML站点地图是否存在影响搜索引擎和AI可发现性的结构问题。我们将即时检查您的站点地图结构并报告问题。
什么是Sitemap?
XML站点地图是一个列出您网站URL的文件,包含最后修改日期和更新频率等元数据。它帮助搜索引擎和AI爬虫发现您的页面并确定索引优先级。
为什么它很重要
- 确保所有重要页面被搜索引擎和AI爬虫发现
- 告诉爬虫内容最后更新时间,以获得更新鲜的索引
- 提高爬取效率——爬虫专注于您关心的页面
常见问题
- 缺少站点地图——爬虫只能猜测哪些页面存在
- 无效XML——损坏的站点地图会被爬虫静默忽略
- 重复URL——浪费爬取预算并产生冲突信号
常见问题
Sitemap检查器发现并验证您的XML站点地图。它检查 robots.txt 中的站点地图引用,解析站点地图索引和URL集,验证XML结构,检测重复URL,并报告可能阻止搜索引擎和AI助手正确索引您内容的问题。
ChatGPT、Gemini、Claude 和 Perplexity 等AI助手依赖网络爬取来构建知识库。站点地图告诉这些爬虫您网站上有哪些页面以及最后更新时间。没有有效的站点地图,AI爬虫可能会错过重要页面或在无关页面上浪费时间——降低您在AI生成回答中被引用的机会。
检查器能检测损坏或不可访问的站点地图、无效XML语法、缺少必需元素、跨站点地图的重复URL、超过推荐深度的站点地图索引嵌套,以及超过每个站点地图50,000条目限制的URL。每个问题被分类为错误、警告或信息提示。
站点地图索引(sitemapindex)是引用其他站点地图文件的文件——它充当目录。URL集(urlset)包含实际的页面URL以及可选的元数据,如最后修改日期和更新频率。大型网站通常使用一个站点地图索引指向多个URL集站点地图,每个最多包含50,000个URL。
是的。GeoVector 的站点地图检查器完全免费,无需注册。免费版本检查最多10,000个URL的站点地图结构和XML验证。如需更深入的分析,包括URL可访问性检查、断链检测和持续监测,GeoVector 提供付费方案。
您应该在添加或删除页面、更改URL结构、更新CMS或部署网站更改时检查站点地图。对于活跃的网站,建议每月检查一次。损坏的站点地图可能会悄悄阻止搜索引擎和AI助手发现您的最新内容。
站点地图的上限,以及本次扫描的处理方式
规范设定了硬性上限。这个免费扫描会用更低的自有限制,好让单次检查保持快速;付费审计会走完整棵树。
| Limit | Specification | What this scan does |
|---|---|---|
| URLs per sitemap file | 50,000 | This scan reads up to 10,000 and then reports MAX_URLS_REACHED. |
| Uncompressed size per file | 50 MB | Split past the limit and list the parts in a sitemap index. |
| Sitemaps per index file | 50,000 | This scan fetches up to 100 files per run. |
| Index nesting depth | One level in the specification | This scan follows three levels before reporting MAX_DEPTH_EXCEEDED. |
| URL scope | Same protocol and host, at or below the sitemap file's own directory | A sitemap at /catalog/sitemap.xml only affects /catalog/. Google lifts that restriction for sitemaps submitted through Search Console, which also allows cross-submitting URLs for other verified sites. |
合法的站点地图 XML 长什么样
两种文件共用一个命名空间:urlset 列出页面,sitemapindex 列出其他站点地图文件。
<?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-08-01</lastmod>
</url>
<url>
<loc>https://example.com/pricing</loc>
<lastmod>2026-07-18</lastmod>
</url>
</urlset><?xml version="1.0" encoding="UTF-8"?>
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<sitemap>
<loc>https://example.com/sitemap-pages.xml</loc>
<lastmod>2026-08-01</lastmod>
</sitemap>
<sitemap>
<loc>https://example.com/sitemap-blog.xml</loc>
<lastmod>2026-08-05</lastmod>
</sitemap>
</sitemapindex>User-agent: *
Allow: /
Sitemap: https://example.com/sitemap.xmllastmod 只有在真实时才有价值。构建流程在每次部署时给所有 URL 都盖上当天日期,只会教会爬虫忽略这个字段,而你损失掉的,恰恰是唯一能告诉它们「哪里真的变了」的信号。
本次扫描可能返回的问题代码
Error 表示爬虫无法使用这份站点地图。Warning 表示能用,但其中有内容会造成误导。
| Code | Severity | What triggers it |
|---|---|---|
NO_SITEMAP_FOUND | Error | Nothing in robots.txt and no /sitemap.xml. Crawlers fall back to link discovery only. |
SITEMAP_HTTP_ERROR | Error | The sitemap URL returned 4xx or 5xx. A referenced-but-broken sitemap is worse than none. |
SITEMAP_REDIRECTED | Error | The sitemap redirects. Point robots.txt at the final URL. |
DUPLICATE_URL | Warning | The same URL appears more than once across your sitemaps. |
MAX_DEPTH_EXCEEDED | Warning | Indexes nested more than three deep. Flatten the hierarchy. |
URL_INACCESSIBLE | Warning | A listed URL did not respond with 200 when accessibility checking is on. |
URL_REDIRECTED | Info | A listed URL redirects. List destinations, not redirects. |
来源与规范
本页所有内容都以下列一手文档为准。厂商一旦改规则,最先反映在那里。
- Sitemaps XML format (protocol 0.9) — sitemaps.org
- Build and submit a sitemap — Google Search Central
- Manage sitemaps with sitemap index files — Google Search Central
最后审阅于 。每当厂商更新规范,我们都会重新核对本页内容。