新的XAMPP安全概念

时间:2019-08-20 17:58:27  来源:igfitidea点击:

安装XAMPP之后,提示错误页
Access to the requested object is only available from the local network

Access forbidden!
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".

错误页面提示了此设置可以在文件“httpd-xampp.conf”中配置

XAMPP默认安装路径为/opt/lampp。
因此,我们在其中搜索httpd-xampp.conf文件

find /opt/lampp -name httpd-xampp.conf

解决方案

编辑httpd-xampp.conf文件

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

将Require local改成 Require all granted,允许所有人访问

<LocationMatch "^ (?i:(?:xampp|security|licenses|phpmyadmin|webalizer|server-status|server-info))">
 #       Require local
	Require all granted
	ErrorDocument 403 /error/XAMPP_FORBIDDEN.html.var
</LocationMatch>

重新加载lampp的apache服务

/opt/lampp/lampp reloadapache

我们也可以使用stopache、startapache重启

/opt/lampp/lampp stopapache
/opt/lampp/lampp startapache

现在就可以打开XAMPP服务器了。