当前位置:首页 > PHP教程 > Apach > 列表

Apache配置禁止访问目录403

发布:smiling 来源: PHP粉丝网  添加日期:2014-09-20 16:15:53 浏览: 评论:0 

在PHP网站开发中,为了让网站目录文件和程序代码的安全考虑,我们必须对某些目录或者文件的访问权限进行控制,来提高网站的安全,那么我们怎样来实现这种功能呢?这时候可以配置Apache来禁止网站以目录的形式列出网站内容.

在Apache中没有配置禁止目录访问时候,当你访问 http://localhost时会列出相关的目录和文件列表,我们可以通过修改Apache配置文件httpd.conf来实现禁止列出目录/文件列表,方法如下.

1、打开apache的配置文件“httpd.conf”

2、找到以下部分:

  1. <Directory /> 
  2.  
  3. Options Indexes 
  4.  
  5. AllowOverride None 
  6.  
  7. Order allow,deny 
  8.  
  9. Allow from all 
  10.  
  11. </Directory> 

只需将Options Indexes修改为Options None即可.

注:根据PHP运行环境安装包的不同,Options Indexes也有可能是Options Indexes FollowSymLinks,一并改为Options None即可,保存httpd.conf,重启apache,如果此时不行,继续修改下面的配置:

  1. <Directory "E:/web"
  2.  
  3.     # 
  4.  
  5.     # Possible values for the Options directive are "None""All"
  6.  
  7.     # or any combination of: 
  8.  
  9.     #   Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI MultiViews 
  10.  
  11.     # 
  12.  
  13.     # Note that "MultiViews" must be named *explicitly* --- "Options All" 
  14.  
  15.     # doesn't give it to you. 
  16.  
  17.     # 
  18.  
  19.     # The Options directive is both complicated and important.  Please see 
  20.  
  21.     # http://httpd.apache.org/docs/2.2/mod/core.html#options 
  22.  
  23.     # for more information. 
  24.  
  25.     # 
  26.  
  27.     Options none 
  28.  
  29.     # 
  30.  
  31.     # AllowOverride controls what directives may be placed in .htaccess files. 
  32.  
  33.     # It can be "All""None"or any combination of the keywords: 
  34.  
  35.     #   Options FileInfo AuthConfig Limit 
  36.  
  37.     # 
  38.  
  39.     AllowOverride None 
  40.  
  41.     # 
  42.  
  43.     # Controls who can get stuff from this server. 
  44.  
  45.     # 
  46.  
  47.     Order allow,deny 
  48.  
  49.     Allow from all 
  50.  
  51. </Directory> 
  52. //开源代码phpfensi.com 

如上:将里面红色的部分,一并改过来就行了.

3、保存httpd.conf,并重启Apache即可,此时再访问 http://localhost时,如果没有index.html或者index.php这些默认的文件时,就会报apache http 403 禁止访问错误信息.

Forbidden You don’t have permission to access / on this server.

Tags: Apache配置 Apache禁止403

分享到: