打开网址出现这个问题。。
Forbidden
You don't have permission to access /PHPMyadmin on this server.
Forbidden
You don't have permission to access /PHPMyadmin on this server.
2016-10-21
在 phpmyadmin 文件夹中找到 phpmyadmin.conf
在文件中能看到如下面一段配置
<Directory "c:/wamp/apps/phpmyadmin3.4.10.1/">
Options Indexes FollowSymLinks MultiViews
AllowOverride all
Order Deny,Allow
Deny from all
Allow from 127.0.0.1
</Directory>
找到 Deny from all 意思是禁止所有访问,但允许从 127.0.0.1 访问
那么我们就删除 Allow from 127.0.0.1
并且把 Deny from all 修改为 Allow from all
意思就是允许从所有地址访问
举报