Forum Topic: sitemap stuff
Man, I’m going nuts trying to figure out how you…
- Got your sitemap looking so sexy
- Got all requests for “sitemap” to redirect to
sitemap.xml
(without causing an infinite redirect loop)
^_^
2 Replies to “sitemap stuff”
Hehe, here is the magic recipe:
# SITEMAPS
<IfModule mod_rewrite.c>
RewriteCond %{REQUEST_URI} !^/sitemap\.(xml|xsl)(\.gz)? [NC]
RewriteCond %{REQUEST_URI} !^/(search|tag) [NC]
RewriteCond %{REQUEST_URI} /sitemap [NC]
RewriteRule .* https://perishablepress.com/sitemap.xml [R=301,L]
</IfModule>
Never been posted! But you may need to refine according to your needs.
Bam.