搜索控制台的站点地图 xml 标签错误:无效 XML 标签 <sitemap>

Sitemap xml tag error for search console: Invalid XML tag <sitemap>

我无法将此母版 XML 提交给 google,其中 2 个子 sitemap.xml 完好无损。

当我将其提交到搜索控制台进行索引时,出现以下错误:

Errors Invalid XML tag This tag was not recognized. Please fix it and resubmit. Parent tag: urlset Tag: sitemap

高手sitemap.xml如下,谢谢大家的帮助~

    <?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
  <url>
    <loc>https://www.domain.domain/</loc>
    <changefreq>daily</changefreq>
    <priority>0.9</priority>
  </url>
  <sitemap>
    <loc>https://www.domain.domain/sitemap5-0.xml</loc>
        <changefreq>daily</changefreq>
        <priority>1.0</priority>
  </sitemap>
  <sitemap>
    <loc>https://www.domain.domain/sitemap5-1.xml</loc>
    <changefreq>daily</changefreq>
    <priority>1.0</priority>
  </sitemap>
</urlset>

您需要使用 url:

移除 sitemap 元素
<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<url>
    <loc>https://www.domain.domain/</loc>
    <changefreq>daily</changefreq>
    <priority>0.9</priority>
  </url>
  <url>
    <loc>https://www.domain.domain/sitemap5-0.xml</loc>
        <changefreq>daily</changefreq>
        <priority>1.0</priority>
  </url>
  <url>
    <loc>https://www.domain.domain/sitemap5-1.xml</loc>
    <changefreq>daily</changefreq>
    <priority>1.0</priority>
  </url>
</urlset> 

此站点地图有效。