私はこれを私のweb.configファイルに持っています:
<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="Found" url="https://{HTTP_HOST}/{R:1}" />
</rule>
</rules>
</rewrite>
</system.webServer>
IIS マネージャーでルールが追加されていることを確認しましたが、機能していないようです。SSL をオフとして要求しています。
したがって、 webvts.mprin.com またはhttp://webvts.mprinc.comにアクセスすると、404 not found エラーが発生します。しかし、https://webvts.mprinc.comにアクセスすると、すべてが機能します。