PHP下打开phpMyAdmin出现403错误_PHP教程
程序员文章站
2022-04-26 20:03:32
...
安装完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)
推荐阅读
-
PHP Curl出现403错误的解决办法
-
PhpMyAdmin出现export.php Missing parameter: what /export_type错误解决方法
-
PHP下打开phpMyAdmin出现403错误的问题解决方法
-
thinkphp3.2在php7下运行,出现错误"系统不支持:mysql"问题怎么解决?
-
浅析Dos下运行php.exe,出现没有找到php_mbstring.dll 错误的解决方法
-
windows下apache+mysql+php+phpmyadmin的配置方法_PHP教程
-
PhpMyAdmin出现export.php Missing parameter: what /export_type错_PHP教程
-
linux中phpMyAdmin错误提示Wrong permissions on configuration file,_PHP教程
-
PHPExcel导出Excel文件时出现错误的解决办法_PHP教程
-
PHP下打开phpMyAdmin出现403错误_PHP教程