我正在使用wampp 3.1.7(apache 2.4.38)在本地主机上设计我的wordpress网站,并且尝试通过移动设备访问我的项目。
我阅读了stackoverflow主题并逐个应用了步骤:
在我的防火墙“传入规则”中添加了8080端口
使用我的ip编辑的rooter NAT:192.168.0.xx和端口8080 我将apache httpd.conf更改为:
Listen 0.0.0.0:8080
Listen [::0]:8080
<Directory />
AllowOverride none
Require all granted
</Directory>
onlineoffline tag - don't remove
Require all granted
ServerName localhost:8080
并编辑了httpd-vhost,如:
# Virtual Hosts
<VirtualHost *:8080>
ServerName localhost
ServerAlias localhost
DocumentRoot "${INSTALL_DIR}/www"
<Directory "${INSTALL_DIR}/www/">
Options +Indexes +Includes +FollowSymLinks +MultiViews
AllowOverride All
Require all granted
</Directory>
</VirtualHost>
一切正常运行localhost:8080 / mysite或192.168.1.xx / mysite也运行良好。wamppsystemtry图标呈绿色亮起并带有红点。它的在线状态也很好。
当我尝试从手机输入192.168.1.xx时,我正在输入wamppserver设置。但是,如果我添加/ mysite(192.168.1.xx),则我有错误localhost拒绝连接。 (err_connection_refused)
尝试了所有内容,但没有得到结果。对不起,我的语言不好。
还有1个问题..我如何打开所有人的服务器,与朋友分享我的网站设计,以获取可能的反馈?