重写规则不适用于从http重定向到https

时间:2019-03-12 14:17:55

标签: c# iis url-rewrite-module

尝试以下代码但不起作用,在c#的web.config文件的system.webServer标记中输入了rewrite标记,显示错误的重写不能是system.webServer标记的子元素,我也在IIS中配置了此规则< / p>

<configuration>
<system.webServer>
    <rewrite>
          <rules>
            <rule name="Rule1" enabled="true" stopProcessing="true">
              <match url="(.*)" />
              <conditions>
                <add input="{HTTPS}" pattern="^OFF$" />
              </conditions>
              <action type="Redirect" url="https://{HTTP_HOST}{REQUEST_URI}" redirectType="Permanent" />
            </rule>
          </rules>
        </rewrite>
</system.webServer>
</configuration>

1 个答案:

答案 0 :(得分:0)

如果未使用Web平台安装程序安装Urlrewrite模块,请尝试安装它,并尝试使用urlrewrite模块手动添加规则。

https://www.iis.net/downloads/microsoft/web-platform-installer

https://www.iis.net/downloads/microsoft/url-rewrite

关于, 贾帕。