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

来源:互联网 发布:学知不足 教然后知困 编辑:程序博客网 时间:2024/06/05 06:03

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

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页面


0 0
原创粉丝点击