在本地和实时开发之间支持 https url 的技术
当我部署应用程序时,某些 url 必须是 https。
如何在本地开发和部署,同时能够支持带有 https 的 url?
是用函数包装 url 来确定您是本地还是实时的唯一方法吗?
(这是一个.net mvc应用程序)
When I deploy my application, certain urls have to be https.
How can I develop locally and deploy, while being able to support urls that have https?
Is the only way wrapping the url with a function, that determines if you are local or live?
(this is a .net mvc app)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
对于站点内部的 URL,始终使用相对路径。
对于引用外部站点的 URL,您可以使用资源文件来管理它们。这样,您只需在一个位置部署之前更新 URL。
For URLs internal to the site always use relative paths.
For URLs that reference external sites you could use a resource file to manage them. That way you only need to update the URLs before deployment in one location.