Apache2
如何只為apache中的一個目錄設置DirectoryIndex?
我試過這個:
<Directory path> DirectoryIndex a/b </Directory>
但是這樣一來,DirectoryIndex 規則就會應用到 path 的所有子目錄中。我希望它只在頂層工作。我怎樣才能做到這一點?
如果您有 Apache 2.3.9 或更高版本,您可以使用 DirectoryMatch 與行尾匹配 ("$")。
<DirectoryMatch "^/var/www/html/path/$" > DirectoryIndex a/b </DirectoryMatch>