I have an http sever and I use mod_rewrite. My .htaccess file looks like this:
Code: Select all
Options +FollowSymLinks
RewriteEngine on
RewriteBase /
/([a-z\/-]+)/$ /index.php?map=$1
What I don't understand is where does that series of slashes disappear, because they are not in the constant part of the expression nor are they passed on through the map variable. Could someone please explain me why is this happening?
Thanks!