我可以更改本地运行的应用程序域名“localhost”吗?说“abcd”
在本地运行 asp.net 应用程序时,域名显示 'http://localhost:50984/application1/ '
我可以将“localhost”更改为“abcd”吗?如果是的话怎么办?
如何通过网络向其他计算机提供该应用程序?
(我正在使用 Visual Web Developer 2010 Express,Windows 7)(我发现了一些类似的问题,例如 本地运行时更改本地主机域但没有找到任何实现方法)
while running asp.net application locally, the domain name shows 'http://localhost:50984/application1/'
Can I change 'localhost' to 'abcd'? if yes how?
how can this application be made available through network to other computers?
(I am using Visual Web Developer 2010 Express, windows 7) (I found some similar kind of questions like change localhost domain when running locally but didn't find any way to implement)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
打开您的主机文件并将“localhost”修改为“abcd”,该文件位于
C:\Windows\System 32\drivers\etc\hosts
(您必须使用记事本打开)。为了允许您的应用程序在其他计算机上访问,您必须将其托管在某个地方。这通常意味着在 IIS 内,因为据我所知,目前使用提供的本地服务器不可能做到这一点Web 开发人员 2010 Express。
Open up your hosts file and modify 'localhost' to 'abcd', which is located at
C:\Windows\System 32\drivers\etc\hosts
(you'll have to open with notepad).In order allow your application to be accessed on other computers you'll have to host it somewhere. This usually means within IIS because as far as I know this isn't currently possible with the local server provided with Web Developer 2010 Express.