apache 403 Forbidden

1.禁止Indexes参数

下面是设置站点目录/application/apache2.22.27/htdocs的权限问题,其中Indexes参数,是在该站点目录下,如果没有首页文件 index.XXX 如果带有Indexes参数就会显示这个站点目录的结构,如果把Indexes参数去掉,那么就出出现403 Forbidden

 <Directory "/application/apache2.22.27/htdocs">

    Options Indexes FollowSymLinks

    AllowOverride None

    Order allow,deny

    Allow from all

</Directory> 

#####################相关参数设置成下面,将出现403 Forbidden

 <Directory "/application/apache2.22.27/htdocs">

    Options Indexes FollowSymLinks

    AllowOverride None

    Order allow,deny

    Allow from all

</Directory> 

<IfModule dir_module>

    DirectoryIndex index.html ##只要在/application/apache2.22.27/htdocs目录下面不存在index.html文件就会出现403 

</IfModule>


你可能感兴趣的:(Forbidden)