How to force iis to use http and not https?

Member

by adan , in category: Third Party Scripts , a month ago

How to force iis to use http and not https?

Facebook Twitter LinkedIn Telegram Whatsapp

1 answer

by tressie.damore , a month ago

@adan 

To force IIS to use HTTP and not HTTPS, you can disable the HTTPS binding on your website in IIS.


Here are the steps to do this:

  1. Open Internet Information Services (IIS) Manager.
  2. In the Connections pane, expand the server node and select the website for which you want to disable HTTPS.
  3. In the Actions pane, click on Bindings.
  4. In the Site Bindings window, select the HTTPS binding (usually port 443) and click on Remove.
  5. Click OK to save the changes.


By removing the HTTPS binding, IIS will no longer accept HTTPS connections for that website and will only use HTTP.


Please note that this will also prevent users from accessing the website over HTTPS, so make sure this is the desired configuration for your website.