Skip to content

Instantly share code, notes, and snippets.

@jdevalk
Last active December 30, 2019 10:39
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save jdevalk/5318003 to your computer and use it in GitHub Desktop.
Save jdevalk/5318003 to your computer and use it in GitHub Desktop.
# WordPress SEO - XML Sitemap Rewrite Fix - for subfolder install
RewriteEngine On
RewriteBase /wordpress/
RewriteRule ^sitemap_index.xml$ /wordpress/index.php?sitemap=1 [L]
RewriteRule ^locations.kml$ /wordpress/index.php?sitemap=wpseo_local_kml [L]
RewriteRule ^geo_sitemap.xml$ /wordpress/index.php?sitemap=wpseo_local [L]
RewriteRule ^([^/]+?)-sitemap([0-9]+)?.xml$ /wordpress/index.php?sitemap=$1&sitemap_n=$2 [L]
# END WordPress SEO - XML Sitemap Rewrite Fix
@jdevalk
Copy link
Author

jdevalk commented Apr 5, 2013

WordPress SEO - XML Sitemap Rewrite Fix - for subfolder install

@cooperfellows
Copy link

Thanks for this, you are missing one line though, the one that includes the .xsl files:

RewriteRule ^([a-z]+)?-?sitemap.xsl$ /wordpress/index.php?xsl=$1 [L]

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment