Is it possible to have exceptions to a catch all regex in a .htaccess file ?
Here is my current .htaccess file
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ see.php?url=$1 [L]
I would like to have some exceptions to the catch all regex and only use it in the last case, if nothing is found before.
I tried to play with RewriteCond, but I weren't able to make this work.
Edit: I would like exceptions to be rewrited as well, it this possible ?