Http到Https URL重写

时间:2017-08-29 10:30:29

标签: asp.net http https iis-8.5

我的要求很直接。我Shared Services需要Http://abc。我在web.config中添加了以下代码。即在IIS中添加新规则。 我已经在IIS中使用了URL重写模块。

Https://abc

但它仍然不适合我。帮助我。

1 个答案:

答案 0 :(得分:0)

您使用的代码与我在生产中使用的代码非常相似,只是我使用redirectType="Permanent"并且我碰巧使用硬编码域名来确保规范域,我使用{R:1}路径和查询,但我认为你应该使用{HTTP_HOST}{REQUEST_URI},但是你可能需要在两者之间使用斜杠。

尝试一下:

 <system.webServer>
    <rewrite>
        <rules>
            <rule name="http to https" stopProcessing="true">
                <match url="(.*)" />
                <conditions>
                    <add input="{HTTPS}" pattern="^off$" />
                </conditions>
                <action type="Redirect" url="https://{HTTP_HOST}/{R:1}" redirectType="Permanent" />
            </rule>
        </rules>
    </rewrite>
 </system.webServer>