从重写规则中排除特定文件。 htaccess的

时间:2013-02-14 18:41:36

标签: .htaccess file rewrite

这是我们将它用于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

0 个答案:

没有答案