美文网首页
配置虚拟环境出错

配置虚拟环境出错

作者: 我在太行山下 | 来源:发表于2015-12-18 10:33 被阅读0次

You don't have permission to access the requested object. It is either read-protected or not readable.

原因是xmapp路径文件夹下的  apache/conf/httpd.conf中的Directory用了默认的配置,禁止访问所有目录

    AllowOverride none    Require all denied

作如下的修改即可

    AllowOverride none    Require all granted#或者是如下的配置    Options FollowSymLinks    AllowOverride None    Order deny,allow    Allow from all

相关文章

网友评论

      本文标题:配置虚拟环境出错

      本文链接:https://www.haomeiwen.com/subject/otpphttx.html