两天前,我已将我的 asp.net 网站转移到专用服务器。之前它托管在共享主机中。在付款接受页面中,使用重写 url。
If Request.IsSecureConnection = False Then
HttpContext.Current.Response.Redirect(HttpContext.Current.Request.Url.AbsoluteUri.Replace("http://", "https://"))
End If
这在共享主机中运行良好。但在专用服务器中显示“无法连接”
我该如何解决这个问题。
提前致谢。