IIS7 IIS8 http automatically jumps to HTTPS (port 80 jumps to port 443)

IIS7 IIS8 http automatically jumps to HTTPS (port 80 jumps to port 443)

IIS7 needs to confirm whether the "URL REWRITE2" pseudo-static module is installed. If you have already installed it, you can skip it.

URL REWIRTE (pseudo-static module)

Download address: http://www.iis.net/downloads/microsoft/url-rewrite

Step 1: Select the site, "URL rewrite", if you install the English version, it should be [Url rewrite]

Step 2: Add a "Blank Rule"

Step 3: Add rules

Name: HTTPS

Matches URL pattern: (.*)

Add condition: Condition: {HTTPS} Mode: off

Action Type Selection: Redirect

Redirect URL: https://{HTTP_HOST}/{R:1}

Then save it

Final effect picture

Logical grouping in conditions

First refer to the logical grouping information in the figure above.

enter type model Whether to ignore case Remark
{HTTPS} Matches the pattern ^OFF$ YES This is used to match whether your request is HTTPS or HTTP
{HTTPS_HOST} Does not match pattern ^(localhost) YES If you are on localhost it will not redirect to SSL

Advanced version (directly add pseudo-static to web.config)

<?@xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name="HTTP to HTTPS redirect" stopProcessing="true">
<match url="(.*)" />
<conditions>
<add input="{HTTPS}" pattern="off" ignoreCase="true" />
</conditions>
<action type="Redirect" redirectType="Found" url="https://{HTTP_HOST}/{R:1}" />
</rule>
</rules>
</rewrite>
</system.webServer>
</configuration>

This is the end of this article about IIS7 IIS8 http automatically jump to HTTPS (port 80 jump to port 443). For more related content about http automatically jump to HTTPS, please search 123WORDPRESS.COM's previous articles or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Multiple ways to automatically switch from http to https in Apache
  • Configure Tomcat to use https and automatically redirect to https when accessing http
  • How to configure http to automatically redirect to https
  • Perfect solution to the problem that the browser automatically jumps to https when entering http

<<:  Use of Linux read command

>>:  How to solve the problem that mysql cannot be closed

Recommend

Introduction to the use of CSS3 filter attribute

1. Introduction When writing animation effects fo...

Small program to implement a simple calculator

This article example shares the specific code of ...

Tutorial analysis of quick installation of mysql5.7 based on centos7

one. wget https://dev.mysql.com/get/mysql57-commu...

Solution to the failure of 6ull to load the Linux driver module

Table of contents 0x01 Failed to load the driver ...

js to achieve simple calendar effect

This article shares the specific code of js to ac...

25 advanced uses of JS array reduce that you must know

Preface Reduce is one of the new conventional arr...

A simple tutorial on how to use the mysql log system

Table of contents Preface 1. Error log 2. Binary ...

How to customize Docker images using Dockerfile

Customizing images using Dockerfile Image customi...

Docker cleaning killer/Docker overlay file takes up too much disk space

[Looking at all the migration files on the Intern...

Detailed explanation of unique constraints and NULL in MySQL

Preface A requirement I had previously made, to s...

Details of the order in which MySQL reads my.cnf

Table of contents The order in which MySQL reads ...

Example of Vue routing listening to dynamically load the same page

Table of contents Scenario Analysis Development S...

Summary of problems encountered when installing docker on win10 home version

Docker download address: http://get.daocloud.io/#...

Detailed analysis of MySQL optimization of like and = performance

introduction Most people who have used databases ...