我需要在子文件夹中禁用 php 脚本,而不是在根 index.php 中。
例如我的文件:
index.php
test.php
1/index.php
2/index.php
class/*.php
2/test.php
.../... .php
我想禁用除根目录和类目录中的 index.php 之外的所有 php 文件。
我尝试索引根:
php_flag engine off
<Files index.php>
php_flag engine on
</Files>
但这会启用所有带有index.php
.
现在我如何禁用所有子文件夹期望类和所有文件期望 index.php 在根目录?