将http重定向到https asp / iis

时间:2012-04-23 06:53:47

标签: asp.net iis-7

下面是我的web.config文件。我想将http url自动重定向到https。我尝试了以下但是没有用。 在SSL设置中选中了SSL7和SSL。 任何人都可以帮忙。 谢谢

<configuration>
<configSections>
    <sectionGroup name="system.webServer">
        <sectionGroup name="rewrite">
            <section name="rewriteMaps" overrideModeDefault="Allow" />
            <section name="rules" overrideModeDefault="Allow" />
        </sectionGroup>
    </sectionGroup>
</configSections>
<system.webServer>
    <rewrite>
        <rules>
            <rule name="Redirect to HTTPS" enabled="true" stopProcessing="true">
                <match url="^(.*)$" />
                <conditions logicalGrouping="MatchAll" trackAllCaptures="false">
                    <add input="{HTTPS}" pattern="off" />
                </conditions>
                <action type="Redirect" url="https://{HTTP_HOST}/{R:1}" redirectType="Found" />
            </rule>
        </rules>
    </rewrite>
    <defaultDocument>
        <files>
            <add value="index.asp" />
        </files>
    </defaultDocument>       
</system.webServer>
<system.web>
    <customErrors mode="Off" />     
    <pages controlRenderingCompatibilityVersion="3.5" clientIDMode="AutoID" />
</system.web>

1 个答案:

答案 0 :(得分:1)

取消选中&#34;要求SSL&#34; - 要使重定向生效,您必须首先接受HTTP上的初始请求。

修改

第二点。您正在根据HTTPS选择输入。你需要否定这样的条件:

<conditions logicalGrouping="MatchAll" trackAllCaptures="false">
    <add input="{HTTPS}" pattern="off" negate="true" />
</conditions>