Please upgrade here. These earlier versions are no longer being updated and have security issues.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
Solution to 404 problem using .htaccess
I was getting the problem where Google Webmaster Tools was reporting the sitemap.index.xml and the linked sitemaps as a 404. I think this is something to do with going through the Vanilla Routing. The fix I found was to add a rewrite rule to the existing .htaccess so it looks like this:
RewriteBase / RewriteRule sitemap.([^\.]+).xml cache/Sitemaps/sitemap.$1.xml RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^(.*)$ index.php\?p=$1 [QSA,L]
The plugin should then work as advertised. Hope that helps!
0