我有一个本地 Apache 2.4 Docker 容器。我的全局 vhost 配置如下:
LoadModule proxy_fcgi_module modules/mod_proxy_fcgi.so
<VirtualHost *:8080>
ServerName localWeb
DocumentRoot /app
ProxyPassMatch ^/(.*\.php(/.*)?)$ fcgi://php:9000/app/$1
<Directory "/app">
Options All Indexes FollowSymLinks
AllowOverride All
Require all granted
DirectoryIndex index.php index.html index.htm
</Directory>
</VirtualHost>
删除指令时目录浏览有效DirectoryIndex
,但当它在那里时我得到的是一个File not found.
网页。
我希望当目录中没有 index.php、index.html 或 index.htm 时能够进行目录浏览。
那可能吗?