搜索控制台的Sitemap xml标记错误:无效的XML标记<sitemap>

时间:2017-11-29 18:52:30

标签: xml google-sitemap google-search-console

我无法将此主XML提交给google,其中包含2个sub-sitemap.xml。

当我将其提交到搜索控制台进行索引时,它会给我这个错误:

  

错误无效的XML标记无法识别此标记。请修理它   重新提交。父标记:urlset标记:sitemap

我的主站点map.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>

1 个答案:

答案 0 :(得分:0)

您需要使用sitemap删除url个元素:

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

此站点地图有效。