【发布时间】:2015-05-15 10:15:29
【问题描述】:
如果我可以有很多这样的站点地图索引,我很感兴趣:
<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 个站点地图索引来引用站点地图索引,或者站点地图的最大限制是多少?
destinatieTag.xml 是否存在的示例
<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>
我需要在我的网站上做一个站点地图并有一个动态链接,该链接需要对对象列表进行部分排列,并且对于所有部分排列都需要对对象列表进行部分排列以明确我可以有一个像如果这两个列表都只包含 2 个对象:
/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
这迫使拥有大数字的 mach url。
【问题讨论】: