标签:
找到httpd服务的phpmyadmin的配置文件,我的在目录/etc/httpd/conf.d下,然后打开后
原来配置:
<IfModule !mod_authz_core.c>
# Apache 2.2
Order Deny,Allow
Deny from All
Allow from 127.0.0.1
Allow from ::1
</IfModule>
改后配置:
<IfModule !mod_authz_core.c>
# Apache 2.2
Order Deny,Allow
Allow from All
Allow from ::1
</IfModule>
标签:
原文地址:http://my.oschina.net/surjur/blog/373435