简体   繁体   中英

Redirecting to HTTPS in web. Config

I have added a new rule in web. Config file to redirect to HTTPS. It is working in local host but once I deployed it to the Dev environment redirecting is not working. Anyone have any solution to solve it.

<system.webServer>
<rewrite>
<rules>                   
<rule name="Force HTTPS" enabled="true" stopProcessing="true">    
<match url=".*" ignoreCase="false"/>
<conditions logicalGrouping="MatchAny" trackAllCaptures="false">            
<add input="{HTTPS}" pattern="off"/>
</conditions>                 
<action type="Redirect" url="https://{HTTP_HOST}{REQUEST_URI}" redirectType="Permanent"/>       
</rule>                     
</rules>                     
</rewrite>
</system.webServer>

Use this updated version:

<rewrite> 
    <rules> 
    <rule name="HTTPS force" enabled="true" 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> 

in my solution I use this config and it works:

<rule name="HTTP to HTTPS redirect for all requests" stopProcessing="true">
          <match url="(.*)" />
          <conditions>
                <add input="{HTTPS}" pattern="off" />
          </conditions>
          <action type="Redirect" url="https://{HTTP_HOST}/{R:1}" />
        </rule>

I hope it's the solution for you!

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM