我有一个使用cakePHP运行的网站,我在www / application_test中有一个使用重写规则无效的应用程序。
有一种方法可以禁用www / application_test中的目录规则吗?
关注我的.htaccess文件:
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteRule ^(app|cake|vendors)/(.*)$ app/webroot/$1 [L]
RewriteRule ^$ app/webroot/ [L]
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule (.*) app/webroot/$1 [L]
</IfModule>
<IfModule mod_ssl.c>
#Include conf/ssl.conf
</IfModule>
答案 0 :(得分:2)
在RewriteEngine On
行
# ignore application_test for any rewrites
RewriteRule ^application_test(/|$) - [NC,L]