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