【发布时间】:2012-09-13 11:41:44
【问题描述】:
就像在标题中一样。如何重定向整个域,例如:http://testdomain.com.au/ 到 https://testdomain.com.au/ 我可以在 IIRF 文件中进行吗?如果是的话,这应该是什么样子?如何将 IIRF 文件绑定到站点?
【问题讨论】:
就像在标题中一样。如何重定向整个域,例如:http://testdomain.com.au/ 到 https://testdomain.com.au/ 我可以在 IIRF 文件中进行吗?如果是的话,这应该是什么样子?如何将 IIRF 文件绑定到站点?
【问题讨论】:
您可以通过IIS Rewrite module:
http://www.iis.net/downloads/microsoft/url-rewrite
http://www.iis-aid.com/articles/how_to_guides/redirect_http_to_https_iis_7
<rule name="HTTP to HTTPS redirect" stopProcessing="true">
<match url="(.*)" />
<conditions>
<add input="{HTTPS}" pattern="off" ignoreCase="true" />
</conditions>
<action type="Redirect" redirectType="Found" url="https://{HTTP_HOST}/{R:1}" />
</rule>
或者您可以通过Global.asax 文件重定向:
protected void Application_BeginRequest(Object sender, EventArgs e)
{
if ( !Request.IsSecureConnection)
{
string path = string.Format("https{0}", Request.Url.AbsoluteUri.Substring(4));
Response.Redirect(path);
}
}
【讨论】: