I have set up a website on azurewebsites.net. When I go to the url http:/website.azurewebsites.net/ - it doesn't load. But when I go to http:/website.azurewebsites.net/home.aspx - it loads.
I want that if a user goes to http:/website.azurewebsites.net/ - it loads with the home.aspx content or gets redirected to http:/website.azurewebsites.net/home.aspx
The following code doesn't work
<system.webServer>
<defaultDocument>
<files>
<clear />
<add value="Default.aspx" />
</files>
</defaultDocument>
</system.webServer>
Can anyone help??