我们的 web.configs 转换得很好。
但是,对于其中一个,我们需要将所有这些添加到 web.config 中。
不确定如何添加整个 XML 节点。
system.webServer
<rewrite>
<rules>
<rule name="Redirect To HTTPS" enabled="true" stopProcessing="true">
<match url="(.*)" />
<conditions logicalGrouping="MatchAll">
<add input="{HTTPS}" pattern="^OFF$" />
</conditions>
<action type="Redirect" url="https://{HTTP_HOST}/{R:1}" redirectType="SeeOther" />
</rule>
</rules>
</rewrite>