我在example.com
有一个网站,其中包含所有HTML页面。然后,我在example.com/blog/
中安装了wordpress。
所以我创建了example.com/sitemap.xml
,此文件的内部看起来像这样:
<?xml version="1.0" encoding="UTF-8"?>
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<sitemap>
<loc>https://example.com/sitemap_static.xml</loc>
<lastmod>2019-02-20</lastmod>
</sitemap>
<sitemap>
<loc>https://example.com/blog/sitemap_index.xml</loc>
<lastmod>2019-02-20</lastmod>
</sitemap>
</sitemapindex>
两个xml文件都是有效链接。一个用于静态HTML页面,另一个用于Yoast生成的wordpress xml。
我的问题是Google Search Console抱怨此错误:This Sitemap Index is referenced by another Sitemap Index.
我知道是由于example.com/blog/sitemap_index.xml
造成的,但是我该如何解决呢?