I have the following htaccess:
Options +FollowSymlinks
RewriteEngine on
RewriteRule ^models$ index.php [L]
RewriteRule ^post$ index.php?action=post [L]
and a folder named models.
The problem is: Apache sends me into the folder. With "post" the redirect rule works as there is no folder named post.
EDIT:
I forgot to tell that there is htaccess in models folder too, with:
Deny from all
http://example.com/modelsto be rewritten toindex.php, but nothttp://example.com/models/? – Bjørne Malmanger Mar 9 '12 at 18:56