Добавьте следующее в ваш файл web.config с помощью модуля перезаписи URL IIS:
<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>
Если вы используете ASP.NET Core 2.1, вы можете использовать UseHttpsRedirection middleware.