如何禁用 Apache 的文件夹索引?
How to disable Folder indexing with Apache?
我在 Debian 上的虚拟主机有以下条目
<Directory /var/www/html/example.com>
Options -Indexes
</Directory>
但 Apache 仍然显示所有内容
https://i.stack.imgur.com/uW2Z6.png
有什么想法吗?
已解决!
我已经设置了参数
<Directory /var/www/html/>
Options -Indexes
</Directory>
在我的 000-default.conf 中忘记启用配置。
我在 Debian 上的虚拟主机有以下条目
<Directory /var/www/html/example.com>
Options -Indexes
</Directory>
但 Apache 仍然显示所有内容
https://i.stack.imgur.com/uW2Z6.png
有什么想法吗?
已解决!
我已经设置了参数
<Directory /var/www/html/>
Options -Indexes
</Directory>
在我的 000-default.conf 中忘记启用配置。