在本地和实时开发之间支持 https url 的技术

发布于 2024-08-18 05:52:52 字数 141 浏览 2 评论 0原文

当我部署应用程序时,某些 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 技术交流群。

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

发布评论

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

评论(1

哭泣的笑容 2024-08-25 05:52:52

对于站点内部的 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.

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