如何增加站点地图索引的数量

How to increse number of sitemapindex

如果我能有很多像这样的站点地图索引,我很感兴趣:

<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<sitemap>
<loc>https://domain.com/sitemap/destinatieTag.xml</loc>
<lastmod>2015-02-01T05:00:34+02:00</lastmod>
</sitemap>
</sitemapindex>

我的意思是 1 个站点地图索引来引用 thor 站点地图索引,或者站点地图的最大限制是多少?

例如 destinatieTag.xml 是 thor

<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<sitemap>
<loc>https://domain.com/sitemap/myUrlXML.xml</loc>
<lastmod>2015-02-01T05:00:34+02:00</lastmod>
</sitemap>
</sitemapindex>

并且只有 myUrlXML.xml 包含 url xml 示例:

<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9 http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd">
<url>
<loc>https://domain.com/romania</loc>
</url>
</urlset>

我需要在我的网站上做一个站点地图,并且有一个动态 link 需要对对象列表进行部分排列,并且对于所有部分排列需要使用 thor 对象列表进行 thor 部分排列才能清楚如果两个列表只包含 2 个对象,我可以有这样的 url:

/exame/0/0
/exame/0/0;1
/exame/0/1
/example/0;1/0
/example/0;1/0;1
/example/0;1/1
/example/1/0
/example/1/0;1
/example/1/1

这股力量可以让 url 成为大数字。

对于 Google,站点地图可以包含对其他站点地图的引用,但只能有一个级联级别。所以 sitemapindexdestinatieTag.xml 没问题,但是 destinatieTag.xmlmyUrlXML.xml 就不行了。

sitemapindex 中最多可以有 50 000 个 URL 指向其他站点地图。这些站点地图每个都可以包含 50 000 个网页 URL。所有这些站点地图和 URL 必须针对同一个网站。