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).

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

You should ask GoDaddy about that. This is not an ASP.NET MVC question. If they hijack all status code different than 200 to show their own error page you can't do much.

link|improve this answer
feedback

You should create custom ViewResult for every status code and override its ExecuteResult method like this

public class NotFoundViewResult : ViewResult
{
    public NotFoundViewResult()
    {
        ViewName = "404";
    }

    public override void ExecuteResult(ControllerContext context)
    {
        var response = context.HttpContext.Response;

        response.StatusCode = 404;
        // This will prevent IIS7 (GoDaddy) from overwriting your error page!
        response.TrySkipIisCustomErrors = true;

        base.ExecuteResult(context);
    }
}

Your 404 view should be in Shared folder so everybody can access it and your ErrorController should now look like this

public ActionResult NotFound()
{
    return new NotFoundViewResult();
}
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.