This is the contents of .htaccess:
RewriteEngine On
RewriteRule ^/admin/?$ /fof/admin.php [L]
RewriteRule ^/admin/logout/?$ /fof/admin.php?f=logout [L]
The contents of admin.php can be found here:
http://svn.thegot.org/forbes_office_furniture/admin.php
The web accessible URL is:
http://dev.thegot.org/fof/admin
--
The second rewrite rule does not seem to be functioning properly.
Maybe there is something wrong syntactically, but I have yet to find
it. The strange part is that if I alter the second rewrite rule (^/
admin to ^/adm) to:
RewriteRule ^/adm/logout/?$ /fof/admin.php?f=logout [L]
Or anything under 5 characters, everything works. Hopefully, I'm
making a very simple mistake, but any help here would be appreciated.
Thank you.