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?

有帮助吗?

解决方案

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top