On most hosted sites the vendor does not allow you to directly make changes to IIS, instead they normally give you some sort of control panel or user interface to do all that you need. The down side is that you normally have to go to each tab or screen make the change and then wait or restart IIS to see the changes. Although this is fine in most cases there are times when you constantly make the same changes to each site you deploy. Until IIS 7 you were hard pressed to do anything other than contact provider to make the changes for you.
Along came IIS 7 with the distributed configuration options. This allows you to make changes to the server without having permission to directly effect IIS. If you put these settings into a web.config file that runs on something less than IIS 7 the server will ignore these setting so you will be fine.
The key to this setting is to place the below xml in web.config. Most of the time in the web.config file you will have the configuration tag along with other settings (….). Adding the system.webServer section will allow you to do control the default page without having to go to the control panel, make change, restart IIS (potentially) and then see the settings. If you are using WebSitePanel you can see the impact by the screen shots below.
[sourcecode language=”xml”]
<configuration>
…
<system.webServer>
<defaultDocument>
<files>
<clear /> <!–Removes all other default documents–>
<add value="default.aspx" />
</files>
</defaultDocument>
</system.webServer>
…
</configuration>
[/sourcecode]
Looking for quality web hosting? Look no further than Arvixe Web Hosting!