一:禁止 Apache 显示目录结构列表,只需将 Option 中的 Indexes 去掉即可。
比如我们看看一个目录的目录配置:
Options Indexes ----------> 改成:Options FollowSymLinks
AllowOverride All
Require all granted
你只需要将上面代码中的 Indexes 去掉,就可以禁止 Apache 显示该目录结构。用户就不会看到该目录下的文件和子目录列表了。
Indexes 的作用就是当该目录下没有 index.html 文件时,就显示目录结构,去掉 Indexes,Apache 就不会显示该目录的列表了。
二:开启apache显示目录结构列表
1.先在httpd.conf文件中把 DirectoryIndex index.html index.htm default.html default.htm index.php default.php app.php u.php 注销
2.在httpd-vhosts.conf文件中添加Options Indexes
注:有时候报错找不到服务,在FollowSymLinks上加 ExecCGI