1. ホーム
  2. xml

[解決済み] IIS7:HTTP->HTTPS クリーンアップ

2022-05-12 13:15:59

質問

HTTP:// バージョンのサイトへのアクセスをすべて HTTPS:// 相当のサイトにリダイレクトするきれいな方法はありますか?

どのように解決するのですか?

一番きれいな方法は、以下の通りだと思います。 IIS-aid.comに掲載されています。 . web.configのみなので、サーバーを変更しても、403.4カスタムエラーページやその他の特別なパーミッションで行ったすべての手順を思い出す必要はなく、ただ動作します。

<configuration>
  <system.webServer>
    <rewrite>
      <rules>
        <rule name="HTTP to HTTPS redirect" stopProcessing="true">
          <match url="(.*)" />
            <conditions>
              <add input="{HTTPS}" pattern="off" ignoreCase="true" />
            </conditions>
            <action type="Redirect" redirectType="Permanent" url="https://{HTTP_HOST}/{R:1}" />
        </rule>
      </rules>
    </rewrite>
  </system.webServer>
</configuration>