Question

The CustomErrors directive in my web.config is working, except that for 404's, IIS serves a 302 redirect with no ContentType header. This causes firewalls to block the response, and clients never get to the custom error page. Note I'm using IIS7, MVC (razor), ELMAH, and support various browsers.

<customErrors defaultRedirect="~/Site/Error" mode="RemoteOnly" />

How can I get my a reasonable Content-Type header on all my CustomError redirections, or otherwise fix the problem?

Was it helpful?

Solution

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top