Azure App Service – Force redirect from HTTP to HTTPS the easy way!

Once you have uploaded your SSL certificates to your Azure App Service and then configured the bindings (if you are using your own custom domains), there are two ways to force ALL requests to be redirected  from HTTP to HTTPS. The ‘Developer way‘ and the ‘Easy, no code way‘!

Developers way

If you have published your own code, then one way is to manually alter the web.config file with an IIS URL Rewrite and publish the changes.

If using ASP.NET MVC 3 or later then you can just decorate you controller class or methods with [RequireHttps] attribute too, but these days you really should be using HTTPS for everything.

To that end, the MVC 3 + way is to the whole site redirects to HTTPS (without needing attributes)  is to add

filters.Add(new RequireHttpsAttribute());

to the FilterConfig.RegisterGlobalFilters() method.

See  https://blogs.msdn.microsoft.com/benjaminperkins/2014/01/07/https-only-on-windows-azure-web-sites/ for details on what you need to do to add the rewrite rule.

Easy, No code way

However, if you have just used one of the many templates to create an App Service, such as a WordPress site, then you probably don’t want to go messing with the web.config files yourself if you can avoid it.

So, the easiest, non techie way is to add the ‘Redirect HTTP to HTTPS’ Extension kindly created by Greg Hogan (https://github.com/gregjhogan)

  1. In the Azure Portal, select ‘Extensions’ in the App Service blade
  2. Add a new Extension by clicking on the ‘+Add’ button at the top
  3. Select the ‘Redirect HTTP to HTTPS’ extension from the list given.
  4. Agree to the T&C’s
  5. Wait till it’s installed and then restart the service (which you can find in the ‘Overview’)

CAUTION: Don’t do this until you have tested that your site work using HTTPS first!

For more information see https://docs.microsoft.com/en-us/azure/app-service-web/web-sites-configure-ssl-certificate ). Alternatively watch out for my blog coming soon on using ‘Let’s Encrypt‘ for App Services.

Azure Portal, App Service SSL Certificates

13 thoughts on “Azure App Service – Force redirect from HTTP to HTTPS the easy way!

  1. I have installed this in my Web App and tried stop, start and restart but no redirection of http to https, any help would be greatly appreciated.

    Richard

  2. Just to let you all know that as of fairly recently this functionality is built into Azure App Services. It’s hidden away under the “Custom Domains” section. As far as I can tell, it issues a 301 to any request that comes in over http

Leave a Reply to SunsCancel reply

This site uses Akismet to reduce spam. Learn how your comment data is processed.