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

问题描述 投票:1回答:1

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

<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>
c# iis url-rewrite-module
1个回答
0
投票

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

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

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

此致,Jalpa。

© www.soinside.com 2019 - 2024. All rights reserved.