谷歌如何抓取站点地图XML中的上次修改时间

发布于 2024-10-09 16:24:27 字数 653 浏览 3 评论 0原文

假设我的网站名称是 www.somewebsite.com

我在 www.somewebsite.com/sitemap.php 有一个 php 文件,这个 php 文件将由 cron 执行 这个php文件将为我的网站www.somewebsite.com/sitemap.xml创建一个站点地图

<url>
  <loc>http://www.somewebsite.com/some_stupid_content</loc>
  <lastmod>2010-12-10</lastmod>
 </url>

在上面的代码中你可以看到最后修改时间是2010-12-10,这是不正确的。

我的 sitemap.php 文件所做的是,它显示了我的内容管理系统中 content.php 文件的最后修改时间(content.php 用于创建我的网站中的所有内容(some_stupid_content) site)

所以我的 xml 文件中的最后修改时间是错误的。

我应该将 lastmod 作为我的 cron 执行的时间(我知道这次我们也可能会错)。我的问题是它会给谷歌抓取带来一些问题。

suppose my websites name is www.somewebsite.com

i have a php file in www.somewebsite.com/sitemap.php, this php file will be executed by cron
This php file will create a site map for my site www.somewebsite.com/sitemap.xml

<url>
  <loc>http://www.somewebsite.com/some_stupid_content</loc>
  <lastmod>2010-12-10</lastmod>
 </url>

In the above code u can see last modified time is 2010-12-10 , which is not true.

What my sitemap.php file is doing is that, it shows the last modified time of content.php file from my content management system (content.php is used to create all the content(some_stupid_content) in my site)

so the last modified time in my xml file is wrong.

Should i make lastmod as the time in which my cron execute (i know this time also can we wrong). My question is will it create some problem for google to crawl.

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

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

发布评论

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

评论(2

时光无声 2024-10-16 16:24:27

只需将lastmod指向正确的最后修改时间即可。谷歌机器人不会考虑该条目,它们知道如何以巧妙的方式爬行。

但您可以进行更改以使 sitemap.xml 显示正确的 Lastmod。

Just make lastmod points the right last modifying time. Google bots does not consider that entry, they know how to crowl in a clever way.

But you can make a change to make the sitemap.xml to show right lastmod.

手心的海 2024-10-16 16:24:27

即使您手动更新站点地图,也不会对 Google 带来多大好处。对谷歌来说真正重要的是人类可以理解的网站内容更新。如果您的 sitemap.php 中有最新更新,Google 会认为您的排名更高

The sitemap won't do you much good for Google sake even if you update it manually. What really matters to Google is human understandable update of site content. If you have that freshly update in your sitemap.php You will be considered higher rank by Google

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