美文网首页
xmapp 虚拟主机权限问题

xmapp 虚拟主机权限问题

作者: 北方蜘蛛 | 来源:发表于2016-06-21 23:47 被阅读30次

在 Windows 7上安装了个 **ApacheFriends XAMPP Version 3.22 **,浏览网站时出现如下错误:

Access forbidden!
You don't have permission to access the requested directory. There is either no index document or the directory is read-protected.
If you think this is a server error, please contact the webmaster.
Error 403
127.0.0.11
Apache/2.4.10 (Win32) OpenSSL/1.0.1h PHP/7.06

提示权限有问题,解决方法如下:
打开 **httpd.conf **,找到
<Directory /> AllowOverride none Require all denied</Directory>
修改为:
<Directory /> AllowOverride All Require all granted</Directory>
重启下 Apache,问题解决!

相关文章

网友评论

      本文标题:xmapp 虚拟主机权限问题

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