IIS 8中的HTTP到HTTPS重定向

时间:2018-02-04 03:13:14

标签: asp.net server iis-8 windows-server-2012

https://testitnow.in/edgar是建立在ASP上的网站。我在IIS中配置了自动重定向但是,如果我在Web浏览器中键入testitnow.in,我收到以下错误 - “403 - 禁止访问:访问被拒绝。 您无权使用您提供的凭据查看此目录或页面。“

但如果我输入https://testitnow.in或www.testitnow.in,它会重定向到https://testitnow.in。请帮我解决这个问题。

1 个答案:

答案 0 :(得分:1)

尝试更新您的web.config

<?xml version="1.0" encoding="UTF-8"?>
<configuration>
    <system.webServer>
        <rewrite>
            <rules>
                <clear />
                <rule name="Redirect to https" stopProcessing="true">
                    <match url=".*" />
                    <conditions>
                        <add input="{HTTPS}" pattern="off" ignoreCase="true" />
                    </conditions>
                    <action type="Redirect" url="https://{HTTP_HOST}{REQUEST_URI}" redirectType="Permanent" appendQueryString="false" />
                </rule>
            </rules>
        </rewrite>
    </system.webServer>
</configuration>