我试图建立Xampp用于家庭开发.它已正确安装,我可以访问xampp页面,如演示,安全性,状态......甚至使用phytin-gui启动和停止服务器.
但是当使用' http:// localhost/phpmyadmin ' 访问phpMyAdmin时,我得到下一个错误:
Access forbidden!
New XAMPP security concept:
Access to the requested directory is only available from the local network.
This setting can be configured in the file "httpd-xampp.conf".
Run Code Online (Sandbox Code Playgroud)
我检查了我的httpd-xampp.conf,似乎是正确的.我试图改变拒绝全部为允许所有但不起作用.
我的主机文件将localhost指向127.0.0.1,这是访问所有xampp文件的预期.
我在ubuntu 12.04机器上运行XAMPP 1.8.1
有同样问题的人?我在网上搜索了近2个小时,但我发现的所有内容都是在尝试从其他网络或机器访问服务器时发生此错误.但对我来说,情况是我直接在服务器上工作,所以我认为我可以访问phpMyAdmin默认.
我的httpd-xampp.conf
#
# New XAMPP security concept
#
<LocationMatch "^/(?i:(?:xampp|security|licenses|phpmyadmin|webalizer|server-status|server-info))">
Order deny,allow
Deny from all
Allow from ::1 127.0.0.0/8 \
fc00::/7 10.0.0.0/8 172.16.0.0/12 192.168.0.0/16 \
fe80::/10 169.254.0.0/16
ErrorDocument 403 /error/XAMPP_FORBIDDEN.html.var
</LocationMatch>
Run Code Online (Sandbox Code Playgroud)