PHP头条
热点:

apache出现You don't have permission to access / on this server提示的解决方法


在apache的配置文件httpd.conf里定义了对网站根默认的访问权限

#
<Directory />
    Options FollowSymLinks
    AllowOverride None
    Order deny,allow
    Deny from all 
</Directory>

改为

<Directory />
    Options Indexes FollowSymLinks
    AllowOverride None
</Directory>

 

问题解决

www.phpzy.comtrue/php/5795.htmlTechArticleapache出现You dont have permission to access / on this server提示的解决方法 在apache的配置文件httpd.conf里定义了对网站根默认的访问权限 # Directory / Options FollowSymLinks AllowOverride None Order deny,allow De...

相关文章

相关频道:

PHP之友评论

今天推荐