Home  >  Article  >  php教程  >  PHP下打开phpMyAdmin出现403错误

PHP下打开phpMyAdmin出现403错误

WBOY
WBOYOriginal
2016-06-13 11:32:57860browse

 安装完wamp后打开其下的phpMyAdmin也就是路径http://localhost/phpmyadmin/

出现

看里面的代码一下明白了

解决方法直接贴图如下:

 

代码如下:

 

Options Indexes FollowSymLinks MultiViews

AllowOverride all

Order Deny,Allow

Deny from all

Allow from 127.0.0.1


把它改成

 

Allow from 127.0.0.1 => Allow from all 也就是把127。0.0.1替换为all

OK,一切搞定(不行就重启wamp)

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn