在Apache的配置文件httpd.conf中找到需要设置目录的Directory属性,并在Options一行去掉Indexes
比如说:
<Directory "d:\web">
Options Indexes FollowSymLinks
</Directory>
改为:
<Directory "d:\web">
Options FollowSymLinks
</Directory>
-----------------------------------------------------------------
Alias /edit/ "/home/dbphp/db/"
<Directory "/home/dbphp/db">
Options Indexes MultiViews => Options MultiViews
AllowOverride None
Order allow,deny
Allow from all
</Directory>
把Indexes去掉后,就不允许列表了。
比如说:
<Directory "d:\web">
Options Indexes FollowSymLinks
</Directory>
改为:
<Directory "d:\web">
Options FollowSymLinks
</Directory>
-----------------------------------------------------------------
Alias /edit/ "/home/dbphp/db/"
<Directory "/home/dbphp/db">
Options Indexes MultiViews => Options MultiViews
AllowOverride None
Order allow,deny
Allow from all
</Directory>
把Indexes去掉后,就不允许列表了。