首页 > PHP资讯 > 工具库 > 安装phpstudy之后出现了403的错误该如何解决

安装phpstudy之后出现了403的错误该如何解决

工具库

再使用phpstudy中经常会出现很多的问题,其中之一就是phpstudy安装好后出现的403出错,解决方案如下,主要是因为服务器访问权限的问题。只要将phpstudy中的服务器权限打开就可以了。

1. httpd.conf 文件,找到如下代码:

DocumentRoot  "D:\WWW"
<Directory />
    Options +Indexes +FollowSymLinks +ExecCGI
    AllowOverride All
    Order allow,deny
    Deny from all
    Require all granted
</Directory>

Deny from all 修改为 Allow from all.

2. 如果发现上面的配置是Allow from all,那么就设置phpStduy设置->允许目录列表

(如果上面显示还是1,那就是博客园的markdown出错了)

本文由欣才IT学院整理发布,未经许可,禁止转载。