出于信息安全的考虑,往往需要将XAMPP中的phpmyadmin设置为只允许本地访问,禁止远程访问,以避免外部用户对数据库发起攻击。
打开httpd-xampp.conf文件,定位到如下代码
<Directory "C:/xampp/phpMyAdmin">
AllowOverride AuthConfig Limit
#如下三行运行外部网络授权访问
#Order allow,deny
#Allow from all
#Require all granted
#注释上面三行,设置如下一行,可以禁止外部访问,运行本地授权访问
Require local granted
</Directory>
网友评论