IIS 6 404 for default document - Stack Overflow [closed]most recent 30 from stackoverflow.com2009-11-26T17:14:43Zhttp://stackoverflow.com/feeds/question/349574http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/349574/iis-6-404-for-default-document1IIS 6 404 for default document [closed]MartinHN2008-12-08T13:37:33Z2008-12-08T14:00:17Z
<p>I have an ASP.NET website deployed on IIS 6. I have several folders in my app containing handlers like log.ashx, default.ashx and so on.</p>
<p>I have default document configured in IIS, so that I can type www.mydomain.com/tools in the browser, and I will get the /tools/default.ashx.</p>
<p>IIS gives me 404 all the time, which is my problem. I also have the aspnet_isapi.dll configured as a wildcard handler.</p>
<p>Does anyone know how to fix this?</p>
http://stackoverflow.com/questions/349574/iis-6-404-for-default-document/349594#3495940Answer by Marc Gravell for IIS 6 404 for default documentMarc Gravell2008-12-08T13:46:56Z2008-12-08T13:46:56Z<p>Where is the default specified? In "tools"?</p>
<p>Do you get any difference between ".../tools" and ".../tools/" ?</p>
http://stackoverflow.com/questions/349574/iis-6-404-for-default-document/349635#3496350Answer by Zhaph - Ben Duguid for IIS 6 404 for default documentZhaph - Ben Duguid2008-12-08T14:00:17Z2008-12-08T14:00:17Z<p>Setting the default document in IIS just tells IIS to look for a document with that name in the requested folder, so if /tools/default.ashx doesn't exist on the server, then you will indeed get a 404.</p>
<p>You need to declare handlers in the web.config - and this article <a href="http://dotnetperls.com/Content/ASHX-Handler.aspx" rel="nofollow">http://dotnetperls.com/Content/ASHX-Handler.aspx</a> runs you through how you could set something similar up using the urlMappings part of the web.config.</p>