3 回答
TA贡献1872条经验 获得超3个赞
我得到你没有访问权限/禁止在此服务器上
hosts file : 192.168.1.2 example.local
httpd.conf file:
Listen 0.0.0.0:8081
Listen [::0]:8081
Listen 192.168.1.2:8082
vhosts file:
# Virtual Hosts
#
<VirtualHost *:8081>
ServerName localhost
ServerAlias localhost
DocumentRoot "${INSTALL_DIR}/www"
<Directory "${INSTALL_DIR}/www/">
Options +Indexes +Includes +FollowSymLinks +MultiViews
AllowOverride All
Require local
</Directory>
</VirtualHost>
<VirtualHost *:8082>
ServerName example.local
DocumentRoot "c:/wamp64/www/goodmorning"
<Directory "c:/wamp64/www/goodmorning/">
Options +Indexes +Includes +FollowSymLinks +MultiViews
AllowOverride All
Require local
Require ip 192.168.1.2
</Directory>
</VirtualHost>
有什么建议吗?Wampp 3.1.9 64位
TA贡献1856条经验 获得超17个赞
我的电话无法定向到图像URL,所以我按照您所说的那样进行操作,而端口仅与我的PC的IP一起播放。因此,我的站点的域名/服务器名称分别为192.168.1.100:8000、192.168.1.100:8001,依此类推,例如,不要检查虚拟主机定义并在Wamp设置中重复服务器名称。最终,在永久链接设置下的wordpress中,并使用一些插件(例如天鹅绒蓝),将URL更改为唯一的URL并不是很困难,这样可以查看我的手机在不同网站上的外观。非常感谢您的详细解释!
添加回答
举报