我在顶级目录中为我的主程序编写了我的 .htaccess 文件,但也想排除我想运行另一个程序的子文件夹。
<IfModule mod_rewrite.c>
Options +FollowSymLinks
RewriteEngine On
RewriteCond {REQUEST_URI} !=/ecart
RewriteRule ^files/ - [L]
RewriteRule ^(.*)/$ index.php?layers=$1 [L]
</IfModule>
我正在尝试 RewriteCond 但它不起作用。它应该转到 ecart/index.php 文件,但是当我将地址输入为 www.mydomain.com/ecart 时,我仍然被带到前面的域