如何覆盖特定目录的htaccess规则

时间:2010-02-26 08:10:39

标签: .htaccess

我在位于应用程序根目录的.htaccess文件中创建了以下规则(如此,app_name / .htaccess)

Options +FollowSymLinks
RewriteEngine on
RewriteRule ^([^/]*)/([^/]*)$ /index.php?client=$1&page=$2 [L]

现在的问题是我无法访问位于的“验证码类” Web应用程序目录的类文件夹http://app_name/classes/captcha.php?args=xyz&arg1=abc。 什么是这个问题的最佳解决方案。 请稍微说清楚。

由于

1 个答案:

答案 0 :(得分:2)

RewriteEngine on
RewriteCond %{REQUEST_URI} !^/classes/captcha.php
RewriteRule ^([^/]*)/([^/]*)$ /index.php?client=$1&page=$2 [L]