I have an htaccess file that makes all requests to be handled by index.php:
RewriteEngine On
RewriteBase /
RewriteRule ^(.*)/?$ index.php?q=$1 [L]
I want the same behavior except for all requests to myfile.php (including extra query strings like myfile.php?somecontent=1). So all requests that contain myfile.php in the query strings are to be handled by the original file - myfile.php
how do I add such an exception?