Is there anyway i can navigate to a website i develop on my computer from a smartphone connected to the same network? the site is running on localhost, can I make a bridge or something like that?
thanks.
Is there anyway i can navigate to a website i develop on my computer from a smartphone connected to the same network? the site is running on localhost, can I make a bridge or something like that?
thanks.
我认为如果您直接使用您的 IP 作为网站名称,则可以。例如在 TOMCAT 中,所有站点都是 localhost:port/Project_name/filename.html
因此,如果您要使用"http://your_ip:port/Project_name/filename.html"
,它应该可以工作。
请注意,防火墙可能会阻止它工作。
只要您的站点可用于网络,只需使用您的 PC 名称。
因此,如果您正在使用http://localhost:12345
连接进行开发http://muzE-PC:12345
(假设muzE-PC
是您的计算机名称)
而不是 localhost 使用,IP 地址。
确保该网站未被Windows 防火墙阻止。
ipconfig可用于确定 IP 地址。
在远程系统上,localhost 将引用该远程系统(而不是运行网站的系统)。