当前位置:首页 > Apache禁止浏览文件夹下内容 没有默认首页时不显示目录列表

Apache禁止浏览文件夹下内容 没有默认首页时不显示目录列表

点击次数:4115  更新日期:2013-04-01

vi /etc/apache/httpd.conf进行编辑httpd.conf文件。

找到Options Indexes FollowSymLinks在Indexes前面加上"-"符号!

如果加"+"代表允许目录浏览,"-"代表禁止目录浏览。

找到<Directory "/var/www/html/">换成<Directory "/home/httpd">

然后在找到 Options Indexes FollowSymLinks换成Options -Indexes FollowSymLinks

这样的话就属于整个Apache禁止目录浏览了

#

<Directory "/home/httpd">

#

# Possible values for the Options directive are "None", "All",

# or any combination of:

#      Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI MultiViews

#

# Note that "MultiViews" must be named *explicitly* --- "Options All"

# doesn't give it to you.

#

# The Options directive is both complicated and important.     Please see

# http://httpd.apache.org/docs-2.0/mod/core.html#options

# for more information.

#

      Options -Indexes FollowSymLinks