In my web.config I have:

    <customErrors mode="On" defaultRedirect="~/Error.aspx" redirectMode="ResponseRewrite">
        <error statusCode="500" redirect="~/Error.aspx" />
        <error statusCode="404" redirect="~/404.aspx" />
    </customErrors>

Yet with these URL's, only the 2nd one with file extension defined works, the other one returns the blue screen 404 "Server Error in Application".

http://127.0.0.1/scirranew/invalidpath

http://127.0.0.1/scirranew/invalidpath.aspx

Any ideas? I'm on ASP.net 4, IIS 7.5.

link|improve this question

feedback

2 Answers

up vote 5 down vote accepted

If you want this to work, you need to configure IIS to pass all requests to the .NET engine. Your first example is not obviously asking for a .NET page, so it is not routed to the .NET engine.

What version of IIS and .NET are you using? This may help.

link|improve this answer
In .Net 4 though by default all requests WILL go through asp.net. – Andy Jul 1 '11 at 20:45
@Andy I am on .net 4 :S – Tom Gullen Jul 1 '11 at 21:06
What version of IIS? – Jason Jul 1 '11 at 21:09
Tom, what version of IIS? I think Jason is getting at that this also requires IIS7's integrated pipeline. – Andy Jul 2 '11 at 1:49
feedback

ASP.Net only gets invoked for file extensions registered to it in IIS. So when you go to invalidpath IIS checks for a file matching that name, then a folder. If neither exists it invokes the 404 page designated in IIS.

Depending on your version of IIS you have a couple of different options. In IIS6 you have to manually set the 404 page from within the IIS manager. In IIS7 and greater you can use the web.config and changes the system.webServer section: http://www.iis.net/ConfigReference/system.webServer/httpErrors

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.