HTTP を使用してサイトへのすべてのリクエストを HTTPS に書き換える URL 書き換えでこのルールを取得しました
<rule name="Force HTTPS" stopProcessing="true">
<match url="(.*)" />
<conditions>
<add input="{HTTPS}" pattern="off" ignoreCase="true" />
</conditions>
<action type="Redirect" url="https://{HTTP_HOST}/{R:1}" appendQueryString="true" redirectType="Permanent" />
</rule>
特定の URL を HTTP にリライトバックまたはリダイレクトするには、このロールに別のルールまたは例外が必要です。
それは可能ですか?