XML 站点地图中的 URL 顺序重要吗?

发布于 2024-08-02 06:29:50 字数 1059 浏览 4 评论 0原文

对于搜索引擎和网站爬虫来说,XML 站点地图中的 url 顺序重要吗?

目前,当生成站点地图时,我使用数据库中的唯一 ID 按顺序对网站 URL 进行排序。我应该按日期顺序排列网址吗?

顺序站点地图

<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>

For search engines and website crawlers, does the url order matter in a XML sitemap?

Currently when the sitemap is generated, I order the website urls sequentially using a unique id, in the database. Should I order the urls in date order?

Sequential Sitemap

<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>

Date Ordered Sitemap

<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>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

长梦不多时 2024-08-09 06:29:50

经过更多搜索后,我在 sitemaps.org 上找到了常见问题解答的答案。

问:URL 在
站点地图影响其使用?

没有。 URL 在中的位置
站点地图不太可能影响它的方式
被搜索引擎使用或考虑。

After some more searching I found an answer on the FAQ at sitemaps.org.

Q: Does position of a URL in a
Sitemap influence its use?

No. The position of a URL in the
Sitemap is not likely to impact how it
is used or regarded by search engines.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文