Sometimes you really want an infinite redirect: how to create one with mod_rewrite
I recently ran into this issue; to fix it I needed to simulate an infinite redirect. To do so edit the .htaccess file and, right after RewriteEngine on
, put:
RewriteRule ^(.*)$ /$1 [R=301,L]