Forum Moderators: phranque
RewriteEngine On
RewriteCond %{REQUEST_URI} !.php
RewriteCond %{REQUEST_URI} !.htm
RewriteCond %{REQUEST_URI} !.gif
RewriteCond %{REQUEST_URI} !.jpg
RewriteCond %{REQUEST_URI} !.pdf
RewriteCond %{REQUEST_URI} !.cgi
RewriteCond %{REQUEST_URI} !.css
RewriteRule ^(.*) index.php?r=$1
I want any request inside the test folder to be redirected to the index page and this works, except in one case.
If I go to [mysite.com...] it works.
But if I go tp [mysite.com...] I get a 400 Error and I have no idea why.
Does anybody know how to fix this?
Thanks
Try the following rule:
RewriteRule ^(.*)$ /index.php?r=$1