XAMPP使用IP地址而不是127.0.0.1或localhost

时间:2012-02-08 17:35:16

标签: xampp

我需要使用Android手机访问apache服务器上的文件,因此使用localhost或127.0.0.1将无法正常工作。我知道需要对httpd-xampp.conf文件进行更改,但不确定需要做哪些更改。

编辑:输入我的IP地址时,我会看到此屏幕 enter image description here

我认为这需要更改以允许我使用我的IP地址

# Close XAMPP security section here 
<LocationMatch "^/(?i:(?:security))">
Order deny,allow
Deny from all
Allow from ::1 127.0.0.0/8 
ErrorDocument 403 /error/HTTP_XAMPP_FORBIDDEN.html.var
</LocationMatch>

# Close XAMPP sites here
<LocationMatch "^/(?i:(?:xampp|licenses|phpmyadmin|webalizer|server-status|server-info))">
Order deny,allow
Deny from all
Allow from ::1 127.0.0.0/8 
ErrorDocument 403 /error/HTTP_XAMPP_FORBIDDEN.html.var

3 个答案:

答案 0 :(得分:1)

您可以将Listen 127.0.0.1:80的行改为Listen 80。如果您有问题,请告诉我们。

答案 1 :(得分:1)

对我有用的是更改httpd-xampp.conf文件中的权限。最底层应该是:

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

我将Require local更改为Require all granted

答案 2 :(得分:-2)

我更改了httpd.conf中的配置以收听127.0.0.1:81。在我访问127.0.0.1:81/xampp后,它对我来说很好。