Apache设置禁止访问网站目录,目录列表显示文件
发布:smiling 来源: PHP粉丝网 添加日期:2014-09-20 14:56:00 浏览: 评论:0
默认apache在当前目录下没有index.html入口就会显示目录,让目录暴露在外面是非常危险的事,如下操作禁止apache显示目录,希望文章对各位有帮助.
进入apache的配置文件 httpd.conf 找到如下代码:
Options Indexes FollowSymLinks 修改为:Options FollowSymLinks
其实就是将Indexes去掉,Indexes表示若当前目录没有index.html就会显示目录结构.
1. 禁止访问某些文件/目录,增加Files选项来控制,比如要不允许访问 .inc 扩展名的文件,保护php类库,代码如下:
- <Files ~ ".inc$">
- Order allow,deny
- Deny from all
- </Files>
禁止访问某些指定的目录,可以用 <DirectoryMatch> 来进行正则匹配,代码如下:
- <Directory ~ "^/var/www/(.+/)*[0-9]{3}">
- Order allow,deny
- Deny from all
- </Directory>
通过文件匹配来进行禁止,比如禁止所有针对图片的访问,代码如下:
- <FilesMatch .(?i:gif|jpe?g|png)$>
- Order allow,deny
- Deny from all
- </FilesMatch>
针对URL相对路径的禁止访问,代码如下:
- <Location /dir/>
- Order allow,deny
- Deny from all
- </Location>
配置示例,代码如下:
- <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
- </Directory>
- //开源代码phpfensi.com
建议默认情况下,设置APACHE禁止用户浏览目录内容.
Tags: Apache禁止访问 Apache禁止目录
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)