Tag Archives: IIS

Redirect HTTP to HTTPS in IIS

One of our developers wanted to automatically redirect http requests to https, so if a user browsed http://www.itfountain.com then they should be automatically redirected to https://www.itfountain.com. A simple enough task to accomplish with a line of configuration in Apache: Redirect permanent / https://www.itfountain.com/ Unfortunately the web server is IIS and not Apache.  Fortunately there is […]