刚刚将我们的网站从共享网络托管移动到 vps,突然间用户可以浏览目录。我的 .htaccess 文件中有代码在最后一个服务器上停止了它,但现在它被忽略了。
我将此添加到 /etc/apache2/httpd.conf 但似乎没有帮助
<Directory />
AllowOverride All
</Directory>
容器正在运行 ubuntu 10.04
也许问题与 Order 指令有关。
尝试修改如下所示的行:
<Directory />
Options FollowSymLinks
AllowOverride None
Order deny,allow
Allow from all
</Directory>
更多信息可以在这里找到: http ://httpd.apache.org/docs/2.2/pt-br/mod/mod_authz_host.html#order
确保您Options -Indexes
的 htaccess 或虚拟主机中有。