答案 0 :(得分:0)
由于错误声明您无法在本地网络之外访问它。换句话说 - 您的apache xampp配置为仅接受来自127.0.0.1或localhost的调用。对于xampp,这是在apache的location match指令中定义的,请看下面的主题,它涵盖了最常见的情况。但请注意,这可能是安全问题。
http://www.apachefriends.org/f/viewtopic.php?p=185823
这将为您提供有关如何配置允许和拒绝的更多信息 http://httpd.apache.org/docs/2.2/mod/mod_authz_host.html#allow
这样的东西应该在你的httpd-xampp.conf
中<LocationMatch "^/(?i:(?:xampp|licenses|phpmyadmin|webalizer|server-status|server-info))">
Order deny,allow
Deny from all
Allow from ::1 127.0.0.0/8 **your.local.ip.address**
ErrorDocument 403 /error/HTTP_XAMPP_FORBIDDEN.html.var
</LocationMatch>