禁止Apache列出目录内容

作者: 小古 分类: 服务器配置 发布时间: 2011-12-12 ė11844 次浏览 63 条评论
默认情况下,Apache服务器会列出网站目录中的文件及子目录,这对于用于发布站点的服务器来说是很不安全的,所以需要禁用,修改httpd.conf配置文件中的对应设置即可。
问题的现象:
如果你的网站目录下有一个xxx的文件夹,如果xxx文件夹下没有默认页面(index.*等),当用户使用URL:http://你的网址/a/ 访问你的网站的话,Apache会把xxx文件夹里的内容全列出来。
解决方法:
要禁止此功能,修改httpd.conf
找到下面这一句删除掉Indexes即可。
Options Indexes FollowSymLinks
配置示例:
<Directory "c:/Program Files/Apache Software Foundation/Apache2.2/htdocs">
 
   #
    # 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.2/mod/core.html#options
    # for more information.
    # 就是这一行,只去掉indexes也可
    #Options Indexes FollowSymLinks
   Options FollowSymLinks
    #
    # AllowOverride controls what directives may be placed in .htaccess files.
    # It can be "All", "None", or any combination of the keywords:
     Options FileInfo AuthConfig Limit
    #
    AllowOverride None
    #
    # Controls who can get stuff from this server.
    #
    Order allow,deny
    Allow from all
</Directory>
建议默认情况下,设置APACHE禁止用户浏览目录内容。

本文出自 小古Blog,转载时请注明出处及相应链接。

本文永久链接: http://blog.chdz1.com/?post=120

|

3条评论

  1. devilchan 2011-12-17 16:43

    shopex4.85商品关联多分类插件,jay4501072@163.com 谢谢了!回复

  1. 合肥婚姻调查 2011-12-12 10:41

    我也准备学习APACHE。
    不过,还不太懂。回复

  1. 合肥论坛 2011-12-12 09:17

    嗯嗯。。学习了。。回复

发表评论:

电子邮件地址不会被公开。 必填项已用*标注

Ɣ回顶部
sitemap