IIS 6 404 for default document - Stack Overflow [closed] most recent 30 from stackoverflow.com 2009-11-26T17:14:43Z http://stackoverflow.com/feeds/question/349574 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/349574/iis-6-404-for-default-document 1 IIS 6 404 for default document [closed] MartinHN 2008-12-08T13:37:33Z 2008-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#349594 0 Answer by Marc Gravell for IIS 6 404 for default document Marc Gravell 2008-12-08T13:46:56Z 2008-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#349635 0 Answer by Zhaph - Ben Duguid for IIS 6 404 for default document Zhaph - Ben Duguid 2008-12-08T14:00:17Z 2008-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>