来自 phone 的远程访问 WAMP

Remote Access WAMP from phone

我遇到了这个问题中描述的同样问题

Forbidden error when accessing wamp from local network

我尝试了所有这些东西,但没有用:(

我找到了问题的解决方案。

httpd.conf文件中更改以下内容

DocumentRoot "J:/wamp/www/"
#
# Each directory to which Apache has access can be configured with respect
# to which services and features are allowed and/or disabled in that
# directory (and its subdirectories). 
#
# First, we configure the "default" to be a very restrictive set of 
# features.  
#
<Directory />
    Options FollowSymLinks 
    AllowOverride All 
    Order allow,deny 
    Allow from all 
</Directory>

还有这个,

#   onlineoffline tag - don't remove
    Order Allow,Deny 
    Allow from all 
    Allow from 127.0.0.1 
</Directory>

对我来说效果很好。

我从Github

找到了解决方案