Skip to content
On this page

sitemap.xml


标签:vitepress/basic  

Web Master

在以下网站上传 sitemap.xml:

大小限制

搜索引擎对 sitemap.xml 文件大小有限制。根据 Google 文档,一个 sitemap.xml 文件的大小不能超过 50MB(uncompressed),也不能包含超过 50,000个 URL。

当然,如果您的网站足够大并且需要包含更多的 URL,您可以拆分 sitemap.xml 文件为多个独立的文件,然后使用 sitemapindex.xml 文件来指向这些文件。例如:

sitemapindex.xml
├── sitemap1.xml
├── sitemap2.xml
└── sitemap3.xml

在 sitemapindex.xml 文件中,您可以列出所有的 sitemap.xml 文件,例如:

html
<?xml version="1.0" encoding="UTF-8" ?>
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
  <sitemap>
    <loc>https://example.com/sitemap1.xml</loc>
  </sitemap>
  <sitemap>
    <loc>https://example.com/sitemap2.xml</loc>
  </sitemap>
  <sitemap>
    <loc>https://example.com/sitemap3.xml</loc>
  </sitemap>
</sitemapindex>

这样就可以避免一个 sitemap.xml 文件过大的问题了。虽然 Google 对 sitemap.xml 文件大小有限制,但是其他搜索引擎可能会有不同的限制或者没有限制。

Last updated: