I just published an ASP.NET MVC site where I built custom error pages. Here's how I implemented them:
in ErrorController:
public ActionResult NotFound()
{
Response.StatusCode = (int)HttpStatusCode.NotFound;
return View();
}
in web.config:
<customErrors mode="On" defaultRedirect="~/500">
<error statusCode="403" redirect="~/403"/>
<error statusCode="401" redirect="~/401"/>
<error statusCode="404" redirect="~/404"/>
<error statusCode="409" redirect="~/409"/>
<error statusCode="500" redirect="~/500"/></customErrors>
Naturally, faulty requests are routed to the NotFound method, and so on. Theoretically, it should work.
However, I'm facing a problem: now that I've published my site to my host (GoDaddy), I've noticed that returning an error code for HTTP status causes my custom error pages to replaced by the default GoDaddy ones.
How can I get around this? Of course, the simplest solution would be to return a 200 status code, but I'd prefer to return the real error code (for SEO and such).