我有一个像下面这样的文件树...
.htaccess
index.php
includes
css
js
xml
images
apple.jpg
orange.jpg
date.jpg
berry.jpg
.
.
.
waterlemon.jpg
banana.jpg
file
001.txt
002.txt
003.txt
.
.
.
100.txt
我正在使用下面的代码.htaccess
来阻止除目录index.php
中的每个文件和root
目录...
Order Deny,Allow
Deny from All
<Files "index.php">
Order Deny,Allow
allow from all
</Files>
现在我只需要允许文件夹中的apple.jpg
, date.jpg
, berry.jpg
& ......此外,我还需要允许文件夹中的所有内容......这样任何人都可以直接访问任何文件......我该怎么做。 ..??banana.jpg
images
file
001.txt
100.txt
我不想使用多个 .htaccess 文件