Topic: .htaccess issues
Hey all,
I have this in my .htaccess:
RewriteEngine On
RewriteRule ^([^/]+)/([^/]*)\?([^/]*)$ base_forum/$2?$3&forum_name=$1 [L,NC]
RewriteRule ^([^/]+)/([^/]*)$ base_forum/$2?forum_name=$1 [L,NC]
RewriteRule ^([^/]+)$ base_forum/?forum_name=$1 [L,NC]
As you might guess, it should rewrite links of the form
http://www.server.com/forumname/index.php
to
http://www.server.com/base_forum/index.php?forum_name=forumname
Unfortunately, it doesn't Instead of giving me the forum name, it gives me 'base_forum' =/
Any idea why might be causing it?