这是我们将它用于REST框架的简单htaccess文件。
我只想排除一个文件/lib/MyFile.php
被重写。 (所有请求都通过index.php,因此需要BasicAuth)
RewriteCond %{REQUEST_URI} !^/(static_files/.*)$
RewriteCond %{REQUEST_URI} !^/(lib/MyFile.php)$ // this is not working
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php [QSA,L]
该文件的完整网址为http://domain.com/lib/MyFile.php