2017-10-10 16 views
0

現在、http_exampleとhttp_www.exampleをIIS/Server 2016のhttps_www.exampleにリダイレクトしています。リダイレクトは2つの書き換えルールでうまく機能します。しかし、https://examplehttps://www.exampleにリダイレクトする方法を見つけることができません。httpsリダイレクトIIS

あなたのお手伝いをお待ちしております。ありがとう

+2

の可能性のある重複した[httpsにWWWとHTTPに非WWWをリダイレクトするIIS](https://stackoverflow.com/questions/32490426/iis-redirect-non-www- to-www-and-http-to-https) –

答えて

0

1つのルールでも達成できます。あなたのケースでは、ルールは次のようになります。

<rule name="All in one URL" stopProcessing="true"> 
    <match url=".*" /> 
    <conditions logicalGrouping="MatchAny"> 
     <add input="{HTTPS}" pattern="off" /> 
     <add input="{HTTP_HOST}" pattern="^www\." negate="true" /> 
    </conditions> 
    <action type="Redirect" url="https://www.example.com{URL}" /> 
</rule> 
関連する問題