News: 
Welcome to FindUKHosting Forum

Author Topic: How to Force HTTPS From web.config File?  (Read 2481 times)

MarcS

  • Full Member
  • ***
  • Posts: 121
    • View Profile
    • AccuWeb Hosting
How to Force HTTPS From web.config File?
« on: December 25, 2018, 06:52:10 AM »

The Microsoft URL Rewrite Module 2.0 for IIS 7 and above enables IIS administrators to create powerful customized rules to map request URLs to friendly URLs that are easier for users to remember and easier for search engines to find. You can use the URL Rewrite module to perform URL manipulation tasks. To use this rule below are the prerequisites.

1. IIS 7 or above with ASP.NET role service enabled.
2. URL Rewrite Module installed.

When you want to force HTTP to HTTPS, you will need to add below code in your web.config file.

Code: [Select]
<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>

You can also refer to this article.