对于搜索引擎和网站抓取工具,网址映射中的网址顺序是否重要?
目前,在生成站点地图时,我会在数据库中使用唯一ID顺序订购网站网址。我应该按日期顺序订购网址吗?
顺序站点地图
<urlset>
<url>
<loc>http://example.com/</loc>
<lastmod>2009-08-14</lastmod>
</url>
<url>
<loc>http://example.com/article/1/about_us</loc>
<lastmod>2009-07-14</lastmod>
</url>
<url>
<loc>http://example.com/article/2/contacts</loc>
<lastmod>2009-08-09</lastmod>
</url>
</urlset>
日期订购的站点地图
<urlset>
<url>
<loc>http://example.com/</loc>
<lastmod>2009-08-14</lastmod>
</url>
<url>
<loc>http://example.com/article/2/contacts</loc>
<lastmod>2009-08-09</lastmod>
</url>
<url>
<loc>http://example.com/article/1/about_us</loc>
<lastmod>2009-07-14</lastmod>
</url>
</urlset>
答案 0 :(得分:10)
经过一些搜索后,我在sitemaps.org的常见问题解答中找到了答案。
Q: Does position of a URL in a Sitemap influence its use?
没有。 URL中的位置 Sitemap不太可能影响它 被搜索引擎使用或认可。