2017-11-29 9 views
0

このmaster XMLを2 sub-sitemap.xmlをそのまま使用してGoogleに送信する際に問題があります。サイトマップxmlタグ検索コンソールのxmlタグエラー:無効なXMLタグ<sitemap>

私はそれがインデックス化のためのコンソールを検索するために送信すると、それは私に、このエラーを与える:

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> 

答えて

0

〜助けてくれてありがとうあなたは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> 

このサイトマップは有効です。