让 Visual Studios 使用子域?

发布于 2024-09-29 19:42:53 字数 183 浏览 2 评论 0原文

在编写 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

别忘他 2024-10-06 19:42:53

您可以更新您的 hosts 文件并放入本地主机的任何子域:

127.0.0.1    example.com
127.0.0.1    sub.example.com

然后您可以将您的浏览器指向任一域。只要调试器连接到 IIS/Dev 浏览器,您就可以调试服务器端代码。

You can update your hosts file and put in any subdomin for the localhost:

127.0.0.1    example.com
127.0.0.1    sub.example.com

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文