I have a site with this existing rule:
RewriteRule ^(.*)$ index.php?q=$1 [L,QSA]
so that it captures all URLs and translates them to this query.
How can I precede this with something that will make an exception for URLs of the form
http://www.example.com/services/{anything}
e.g. any URL that refers to something in a /services
directory?
Try:
If you are putting this into .htaccess, you might need:
or