如何在 Apache 的特定文件夹中禁用单个选项覆盖?我想在特定文件夹中强制DirectoryIndex值,因此该文件夹的 .htaccess 中的DirectoryIndex选项将被忽略。我希望配置看起来应该有点相似,但两者都不起作用:
<Directory "/home/me/www/symfonyProject1">
DirectoryIndex app_dev.php
AllowOverride -Indexes
</Directory>
或这个
<Directory "/home/me/www/symfonyProject1">
DirectoryIndex app_dev.php
AllowOverride Options=-DirectoryIndex
</Directory>
这甚至可能吗?我怎么能做到这一点?
使用:Apache/2.2.8 (Win32) & Windows 7 x64