尝试以下代码但不起作用,在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>
答案 0 :(得分:0)
如果未使用Web平台安装程序安装Urlrewrite模块,请尝试安装它,并尝试使用urlrewrite模块手动添加规则。
https://www.iis.net/downloads/microsoft/web-platform-installer
https://www.iis.net/downloads/microsoft/url-rewrite
关于, 贾帕。