I have a file sitemap.xml
that is a master index for links to several other sitemaps: sitemap1.xml
, sitemap2.xml
, sitemap3.xml
, .... sitemap20.xml
sitemap.xml
looks like this:
<?xml version="1.0" encoding="UTF-8"?>
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9 http://www.sitemaps.org/schemas/sitemap/0.9/siteindex.xsd">
<sitemap>
<loc>http://example.com/sitemap/sitemap0.xml.gz</loc>
<lastmod>2014-10-29</lastmod>
</sitemap>
<sitemap>
<loc>http://example.com/sitemap/sitemap10.xml.gz</loc>
<lastmod>2014-10-29</lastmod>
</sitemap>
...more links to other sitemaps...
If I resubmit the parent sitemap.xml
in Google's webmaster tools, does it automatically resubmit the children sitemap files it lists (assuming their last updated attribute is later than the one already held by Google)?