ASP.NET сайт. Перенаправить весь домен с http на https
Прямо как в заголовке. Как перенаправить весь домен, например: http://testdomain.com.au/ на https://testdomain.com.au/ Могу ли я сделать это в файле IIRF? Если да, как это должно выглядеть? Как привязать файл IIRF к сайту?
1 ответ
Решение
Вы можете сделать это через 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);
}
}