是否可以在本地 IIS Web 服务器上作为网站的根应用程序测试 Asp.net MVC(正在使用 Visual Studio 开发)...?
我想在本地 IIS Web 服务器上测试我的 asp.net MVC 项目(使用 Visual Studio 开发)作为目标网站的根应用程序,而不是作为根应用程序下的嵌套/子应用程序。
注意:如果我们在本地 IIS Web 服务器上测试项目,通常 Visual Studio 会强制我们在网站下创建虚拟目录。
编辑1:请不要建议我将其发布到根应用程序,因为这有点乏味。对不起,我很懒。
I want to test my asp.net MVC project (being developed using Visual Studio) on Local IIS Web server as the root application of a destinated website rather than as a nested/child application under the root application.
Note: Normally Visual Studio forces us to create Virtual Directory under the website if we test the project on Local IIS Web server.
Edit 1: Don't suggest me to publish it to the root application please because it is a bit tedious. I am sorry, I am lazy.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您不必创建虚拟目录。在 IIS 中创建一个单独的站点(可能具有不同的端口,例如:8080)并将该站点指向本地项目 Web 文件夹。
现在在 Visual Studio 中将项目 url 设置为 http://localhost:8080,您就可以在根目录下测试该站点了。
You don't have to create a virtual directory. Create a separate site in IIS (may be with a different port, for ex: 8080) and point that site to your local project web folder.
Now in visual studio set project url to http://localhost:8080, and you are good to test the site at the root.