I have in my .htaccess
RewriteEngine On
RewriteRule ^([a-z0-9\-\_]+)$ ?page=$1 [L]
Which rewrites mysite.com/page to mysite.com/?page=page which works fine. When I go to mysite.com/css is will ignore the rewrite and go to the css directory (which exists). Is there anyway to have it ignore that the directory exists and continue on going to mysite.com/?page=css ?
Edit: I should add more specifically that when going to mysite.com/css is actually goes to mysite.com/css/?page=css