We have a problem in that IIS no longer serves to find the default document (default.aspx) on a server that previously worked fine. We did not consciously change the configuration of the machine.
Symptoms are that if you go to the root of the application on the computer, it will display a page with asp.net 404 not found with the following text:
Resource is not found.
Description: HTTP 404. [etc.]
Requested URL: / folder / eurl.axd / dd4414e526108f45a561b782d54f3ba2 /
I don't know what eurl.axd is, but it seems to refer to URL support without an extension for ASP.NET 4.0, but the sites in question are ASP.NET 2.0 sites.
Default.aspx is definitely set as the default document (and is at the top of the list) for the site.
If I manually type /folder/default.aspx, then the site works fine, so this is not a problem serving the page, but simply a problem with IIS that does not execute this page by default.
Any ideas on how to fix this will be appreciated as it affects the live server :(
source share