This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 10 years ago.
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
您可以通过运行某些 HTTP 服务器(例如 Apache HTTPD)让用户访问内部网络上的站点( 中包含一个简单的安装程序) WampServer)或 Microsoft IIS。
如果您选择 WampServer 路线,它有一个选项可以让您的网站可供其他计算机使用(“上线”);这会将网站暴露给任何可以访问您的计算机。您大楼中的其他人可以输入您的本地 IP 地址 进入他们的网络浏览器并访问您的网站。
例如,如果您的本地 IP 地址是 192.168.0.101,则用户应该能够使用如下 URL 访问您的网站:http:// /192.168.0.101/
You can have users access a site on your internal network by running some HTTP Server like Apache HTTPD (an easy installer is included in WampServer) or Microsoft IIS.
If you go the WampServer route, it has an option for making your site available to other computers ("Put Online"); this exposes the website to any computer which can reach yours. Other people in your building would be able to type your local IP address into their web browser and access your site.
For example, if your local IP address is 192.168.0.101, users should be able to access your site using a URL like this: http://192.168.0.101/
是的,你可以这样做。您需要在本地计算机上托管您的网站,然后本地网络中的其他人可以使用 IP 地址访问它。
Yes you can do that. you need to host your web site in your local computer and then others in your local network can access it using the ip address.