我已经下载并全新安装了wamp 3几次,因为我无法终生将其公开。 我的端口8080具有正常工作的端口转发功能,并在防火墙中为UDP / TCP打开了它。 我将本地IP地址设置为192.168.0.120 我的httpd-vhost.conf看起来像这样:
# Virtual Hosts
#
<VirtualHost *:8080>
ServerName localhost
DocumentRoot "${INSTALL_DIR}/www"
<Directory "${INSTALL_DIR}/www/">
Options +Indexes +Includes +FollowSymLinks +MultiViews
AllowOverride All
Require all granted
</Directory>
</VirtualHost>
据我了解,使用虚拟服务器时,我不必编辑httpd.conf。 我可以使用手机上的192.168.0.120:8080在本地访问它,但是在https://www.yougetsignal.com/tools/open-ports/上或使用我的DDNS /公共IP(尝试将公共IP与移动数据一起使用,以便模拟外部访问)时看不到它 剩下要做些什么?