我的文件夹结构看起来像这样。
-beta
+folder1
+folder2
+folder3
file1.php
file2.php
现在我想限制所有文件和文件夹,但不限制 folder2 和 file2.php 我如何编写我的 .htaccess 来做到这一点。这就是我写的。
Options +FollowSymlinks
RewriteEngine on
RewriteCond %{REQUEST_URI} !/folder2%$
RewriteCond %{REQUEST_URI} !/file2.php
RewriteRule $ /beta/file2.php [R=302,L]
不知何故,上述方法在一个系统中有效,但在其他系统中无效。你能指出我在这里做错了什么吗?
谢谢,
萨哈