请注意,本文编写于 662 天前,最后修改于 662 天前,其中某些信息可能已经过时。
报错信息
报错:
发现无效日期。请修正日期或格式,然后重新提交。
详细信息:
父标记:url
标记:lastmod
解决方法
首先确认自己的日期格式是否出错符合标准
- 谷歌官网标准文档:https://developers.google.com/search/docs/crawling-indexing/sitemaps/build-sitemap?hl=zh-cn
- sitemap标准:https://www.sitemaps.org/protocol.html
谷歌xml的标准格式
<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<url>
<loc>https://www.example.com/foo.html</loc>
<lastmod>2018-06-04</lastmod>
</url>
</urlset>
可以看到日期为 2018-06-04
,请确保内容中所有日期格式一致!无小时分秒
根据Google描述也可以写如下日期格式
<lastmod>2004-12-23T18:00:15+00:00</lastmod>
统一之后再次提交即可