I'm using this in my conf:
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.+)$ /index.php?page=$1 [QSA]
But files such as /theme/styles.css still get redirected to index.php
Does anyone know why this doesn't work?
.htaccess, or in the apache conf? If in an.htaccess, have you correctly set theRewriteBase? – Steven Monday Nov 14 '10 at 15:52