zoukankan      html  css  js  c++  java
  • Apache设置禁止访问网站目录(目录列表显示文件)

    Apache设置禁止访问网站目录(目录列表显示文件)

    时间:2014-04-03 00:00:00 编辑:简简单单 来源:转载

    进入apache的配置文件 httpd.conf 找到:

     代码如下 复制代码
    Options Indexes FollowSymLinks 修改为: Options FollowSymLinks

    其实就是将Indexes去掉,Indexes表示若当前目录没有index.html就会显示目录结构。

     代码如下 复制代码
    1. 禁止访问某些文件/目录
    增加Files选项来控制,比如要不允许访问 .inc 扩展名的文件,保护php类库:

    Order allow,deny
    Deny from all
    禁止访问某些指定的目录:(可以用    来进行正则匹配)

    Order allow,deny
    Deny from all
    通过文件匹配来进行禁止,比如禁止所有针对图片的访问:

    Order allow,deny
    Deny from all
    针对URL相对路径的禁止访问:

    Order allow,deny
    Deny from all

    配置示例:

     代码如下 复制代码
    <directory "e:="" 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

    建议默认情况下,设置APACHE禁止用户浏览目录内容。
  • 相关阅读:
    webIDE 第二篇博文
    前端第一天
    记昨天
    入职第四天
    入职第二天
    linux常用命令,自己总结
    一切从头开始
    在服务器上搭建SVN
    Dynamic CRM 365学习历程--JS
    Dynamic CRM 365学习历程--有关CRM的学习过程种需要注意的事项
  • 原文地址:https://www.cnblogs.com/wangboyu/p/13181821.html
Copyright © 2011-2022 走看看