WampServer的三个权限问题

总共有三个地方需要修改:

1.进入apache的httpd.conf中,找到directory这个标签,把里面的内容修改为:

<Directory />
Options FollowSymLinks
AllowOverride None
Order deny,allow
Require all granted
</Directory>

2.还是在httpd.conf中,再往下拉,看到<Directory "D:/wamp/www/">开头的标签,找到“Require local”,把它用#注释掉或者删掉,改为Require all granted,其实看旁边的英文就知道,它说要online就要Require all granted

3.点击wamp图标,进入apache-Alias directories-http://localhost/phpmyadmin-edit alias,    在<ifDefine>下标签中的Require local替换成Require all granted,然后大功告成!

猜你喜欢

转载自blog.csdn.net/qq_36769704/article/details/76040194