New XAMPP security concept: Access to the requested object is only available from the local network

前提:虚拟机 centos一键安装xampp后,访问http://ip/phpmyadmin,会出现下列错误

New XAMPP security concept:  Access to the requested object is only available from the local network.  This setting can be configured in the file "httpd-xampp.conf".

解决办法:

使用vim编辑配置文件

vim /opt/lampp/etc/extra/httpd-xampp.conf

在文件末尾

#Require local    <---将这个注释掉,取消只允许本地访问
ErrorDocument 403 /error/XAMPP_FORBIDDEN.html.var

重启xammp服务

/opt/lampp/lampp restart

可以实现远程访问了,此时就可出现xampp页面