Windows 7 IIS 7.0 - 设置应用程序在本地主机下运行
如果我在 Visual Studio 中创建一个名为 MyWebApp 的 Web 应用程序,如何确保可以通过以下地址访问它:
无需端口,
感谢
VS 2010 IIS 7.0 视窗7
If i create a web application inside Visual Studio called MyWebApp, how can I make sure it can be accessed at the following address:
NO PORTS required
thanks
VS 2010
IIS 7.0
Windows 7
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
默认情况下,Http 在端口 tcp/80 上运行。
编写 http://address.com/ 与 http://address.com:80/
如果 IIS 配置为使用默认端口 80,则无需指定任何内容。
Http is by default run on port tcp/80.
writing http://address.com/ is the same as http://address.com:80/
If IIS is configured to use the default port of 80, then you do not need to specify anything.
将该应用程序添加到 IIS(名称为“MyWebApp”),确保应用程序的根文件夹指向计算机上项目的根文件夹。
Add that application to IIS (with the name "MyWebApp"), make sure the root folder for the application is pointing to the root folder of the project on your computer.