How to set a default page on Azure Web App How to set a default page on Azure Web App azure azure

How to set a default page on Azure Web App


Web Apps allow you to specify the default page. You'll find this in the various settings:

default documents

However: This isn't going to let you specify a virtual directory path, such as /en or /nl as you have shown. You'll need to deal with redirects within your app / routes / etc.


To redirect, go to code behind in your default.aspx page and use Response.Redirect.