Hello I have a link on my site with files at the following link: example.com/community/community/ How can I use htaccess to convert the link to example.com/community/ without moving the files from /community/community/
+2
A:
Assuming example.com is the same domain where the site resides, and that .htaccess
is in the domain root:
RewriteEngine On
RewriteBase /
RewriteRule ^community/community/(.*)$ /community/$1 [L]
Lauri Lehtinen
2010-06-10 16:02:16