2014-04-14 08:37:02
来 源
IT技术网
Linux
本文介绍Apache服务器中设置禁止浏览目录的方法,希望对于初学Nginx服务器相关的朋友有帮助,更多Nginx安装、配置、报错处理等资源请本站内搜索。。
vi /etc/apache/httpd.conf进行编辑httpd.conf文件。

找到Options Indexes FollowSymLinks在Indexes前面加上—符号!如果加+代表允许目录浏览—代表禁止目录浏览。

找到换成

然后在找到 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

这个是配置好的禁止整个Apache浏览

声明: 此文观点不代表本站立场;转载须要保留原文链接;版权疑问请联系我们。