在 Visual Studio 中使用子域调试 mvc Web 应用程序?
如果我想在我的网站上使用图像、样式表和 javascript 的子域(例如 img.domain.com),您将如何在 Visual Studio 2008 中进行设置,以便我能够在本地计算机上调试网站?
是否可以 ?又如何?
webdev 服务器始终使用 localhost:port,是否有办法将 img.localhost:port 等映射到项目中的特定文件夹?
If I want to use subdomains for images, stylesheets and javascripts on my website (like img.domain.com), how would you set it up in Visual Studio 2008 so I am able to debug the website on my local computer?
Is it possible ? and how ?
The webdev server always uses localhost:port, is there anyway to map etc. img.localhost:port to a specific folder in a project ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用%systemroot%\system32\drivers\etc\hosts并将任意域名映射到127.0.0.1(即localhost)。然后,设置调试操作以打开自定义 URL。
(根据评论进行编辑)
如果您需要有不同的目录结构,则需要使设置稍微复杂一些。我会尝试使用指向相同内容的虚拟目录来设置 IIS,特别是如果它是静态的(如图像)。
Use
%systemroot%\system32\drivers\etc\hosts
and map and arbitrary domain name to 127.0.0.1 (i.e. localhost). Then, set your debug action to open a custom URL.(edit in response to comments)
If you need to have different directory structures, you'll need to complicate the setup a bit. I'd try setting up IIS with a virtual directory pointed at the same content, especially if it's static (like images).