让 Visual Studios 使用子域?
在编写 ASP.NET 项目时,我可能有这个 url 用于测试/调试,
http://localhost:1234/
我有考虑子域的代码。我可以让视觉工作室调用相同的代码吗
http://anysub.localhost:1234/
While writing an asp.net project i may have this url for testing/debugging
http://localhost:1234/
I have code that takes in account of subdomains. Can i make visual studios call the same code with
http://anysub.localhost:1234/
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以更新您的 hosts 文件并放入本地主机的任何子域:
然后您可以将您的浏览器指向任一域。只要调试器连接到 IIS/Dev 浏览器,您就可以调试服务器端代码。
You can update your hosts file and put in any subdomin for the localhost:
You can then point your browser to either domain. So long as the debugger is attached to IIS/Dev browser, you will be able debug your server side code.