我在网站上有以下规则将 http 重定向到 https。我们刚刚发现,我们的应用程序仅使用 api 的 http 提交。在我们得到更新之前,我需要网站忽略对 /api 文件夹的调用,只重定向其他所有内容。我确信有一种方法可以说如果 URL 不包含 /api/ 然后重定向。
<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>