我应该在 web.config 中声明 https 吗?

发布于 2024-07-30 02:08:42 字数 411 浏览 0 评论 0原文

我想我在 https 中遗漏了一些东西...

目前我正在使用它将所需的页面从 http 重定向到 https

  If Not Request.IsSecureConnection Then
  Dim serverName As String = HttpUtility.UrlEncode(Request.ServerVariables("SERVER_NAME"))
  Dim filePath As String = Request.FilePath
  Response.Redirect(("https://" & serverName) + filePath)
  End If

我应该在 web.config 中的某个位置声明 https 的绝对链接吗?

ps 我的链接是相对的

I think i am missing something in https...

Currently i am using this to redirect the desired page from http to https

  If Not Request.IsSecureConnection Then
  Dim serverName As String = HttpUtility.UrlEncode(Request.ServerVariables("SERVER_NAME"))
  Dim filePath As String = Request.FilePath
  Response.Redirect(("https://" & serverName) + filePath)
  End If

Should i declare somewhere in the web.config the absolut links for https?

p.s. My links are relative

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

匿名。 2024-08-06 02:08:42

您可以编写 HttpModule 并将其添加到网络中。配置。

You can write an HttpModule and add it to the web.config.

强辩 2024-08-06 02:08:42

如果您想使用静态 URL,那么您可以将其添加到您的 Web 配置中:

<appSettings>
    <add key="url" value="http://www.yoursite.com" />
</appSettings>

之后您可以在您想要的任何地方获取该值,如下所示:

string strHost = ConfigurationManager.AppSettings.Get("url").ToString();

希望这能解决您的问题。

If you want to use a static URL then you can add this in your web config:

<appSettings>
    <add key="url" value="http://www.yoursite.com" />
</appSettings>

And after that you can get that value where ever you want like this:

string strHost = ConfigurationManager.AppSettings.Get("url").ToString();

Hope this will solve your problem.

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