Set default webpage for website on Microsoft Windows Azure
问题 I recently set up a website on azurewebsites.net. But 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. What I want is that if a user goes to http:/website.azurewebsites.net/ it loads with the home.aspx content or get redirected to http:/website.azurewebsites.net/home.aspx This doesn't work <system.webServer> <defaultDocument> <files> <clear /> <add value="Default.aspx" /> </files> </defaultDocument> <