当前位置:Gxlcms > PHP教程 > php用户权限不足怎么办

php用户权限不足怎么办

时间:2021-07-01 10:21:17 帮助过:5人阅读

问题:You don't have permission to access /index.html on this server.

原因:index.html是用root用户建的文件,apache权限不够。

解决方法:更改文件权限;chmod 755 index.html

如果是WIN 2003下出现这个问题,请按以下方式解决:

打开apache配置文件httpd.conf,找到这么一段:

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

然后试着把deny from all中的deny改成了allow,保存后重起了apache,然后测试网页,访问测试网站完全正常了。

第二种方法是Apache的配置文件httpd-vhosts.conf里,打开扩展配置

# Virtual hosts
Include conf/extra/httpd-vhosts.conf

前面的#去掉了,就引入了扩展配置,而扩展配置 文件里又没配好相应 的权限“Allow from all”,所以提示此错误。

推荐教程:PHP视频教程

以上就是php用户权限不足怎么办的详细内容,更多请关注Gxl网其它相关文章!

人气教程排行