【发布时间】:2012-10-10 08:57:45
【问题描述】:
我试图设置 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".
我检查了我的 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>
【问题讨论】:
-
看我这个话题的回答:stackoverflow.com/a/16617319/2395363
标签: ubuntu phpmyadmin xampp localhost