apache mod_rewrite help:写一个重写规则的exception

我有一个现有的规则网站:

RewriteRule ^(.*)$ index.php?q=$1 [L,QSA] 

以便捕获所有URL并将其转换为此查询。

我怎么能在这个前面的东西,将forms的URL的例外

 http://www.example.com/services/{anything} 

例如任何引用/services目录中的某个URL?

尝试:

 RewriteCond %{REQUEST_URI} !/services 

如果你把这个放到.htaccess中,你可能需要:

 RewriteCond %{REQUEST_URI} !services 

要么

 RewriteCond %{REQUEST_URI} !services/