0

我正在使用 htaccess 从网址中删除我的 index.php 文件。我有一个 RewriteCond 设置来忽略某些文件和文件夹。我的问题是,我需要忽略一个名为“test”的目录,但是当前编写的条件也忽略了以字母 test 开头的任何内容,因此我的“testimonials”目录也被忽略了。有没有办法让我的 RewriteCond 更具体,所以它会忽略“测试”而不是“推荐”?

这是我现有的代码:

# Removes index.php
RewriteCond $1 !^(admin|assets|test|index\.php|info\.php|robots\.txt) [NC]
RewriteRule ^(.*)$ index.php?/$1 [L]
4

1 回答 1

0

RewriteCond $1 !^(admin|assets|\/test\/|index.php|info.php|robots.txt) [NC]

于 2013-01-09T17:01:43.400 回答