Mobile app version of vmapp.org
Login or Join
Reiling115

: Is there anyway to re-submit all sitemaps in Google Webmaster Tools at once for a domain? Something happened and I need to resubmit A LOT of sitemaps across a lot of domains. Is there any

@Reiling115

Posted in: #Automation #GoogleSearchConsole #Sitemap

Something happened and I need to resubmit A LOT of sitemaps across a lot of domains.
Is there any way I can submit all sitemaps/all errorful sitemaps per domain even? It would make things easier for me.

10.01% popularity Vote Up Vote Down


Login to follow query

More posts by @Reiling115

1 Comments

Sorted by latest first Latest Oldest Best

 

@Bryan171

You could create a sitemapindex for each domain that lists all sitemaps for that domain:

<?xml version="1.0" encoding="UTF-8"?>
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<sitemap>
<loc>http://www.example.com/sitemap1.xml</loc>
<lastmod>2011-01-01T18:23:17+00:00</lastmod>
</sitemap>
<sitemap>
<loc>http://www.example.com/sitemap2.xml</loc>
<lastmod>2011-01-01</lastmod>
</sitemap>
</sitemapindex>


This will prevent you from having to submit multiple sitemaps for each domain, at least. It also serves as a workaround for the 50,000 page limit for sitemaps, if you ever need to submit more 50,000 pages. (Each sitemap in the sitemap index can have up to 50,000 entries.)

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme