我不确定这是否可以在代码中实现,或者是否需要在ISS中应用此规则。
基本上我有三个域:
domain1.co.uk > redirects to .com
domain1.com > Primary domain registered with SSL
domain1.ie > I want to redirect this to .com based on SSL request
我已将MVC应用配置为根据域显示相对内容。因此,如果请求来自.ie地址,那么我可以显示相关的内容/元数据等。但我的问题是,当我在HTTPS下访问/帐户/登录时,我得到一个SSL错误,因为证书是在。 com域。
我真的想保留HTTP静态网站的.ie绑定并在Google上对其进行索引,但只要用户尝试导航到HTTPS,我就会切换到.com域名。
我很感激我可以通过改变整个网站的链接来做到这一点,我也尝试了以下但无济于事:
protected void Application_BeginRequest()
{
if(Context.Request.IsSecureConnection && Context.Request.Url.ToString().Contains("domain1.ie"))
Response.Redirect(Context.Request.Url.ToString().Replace("domain1.ie", "domain1.com"));
}
有人可以帮忙吗?