vote up 2 vote down star
3

I want to be able to capture the exception that is thrown when a user requests a non-existant controller and re-direct it to a sweet 404 page. How can I do this?

For example, the user requests http://www.nosite.com/paeges/1 (should be/pages/) they get re-directed to the 404 rather than the nasty exception screen of death?

flag

3 Answers

vote up 3 vote down check

Take a look at this page for routing your 404-errors to a specified page.

link|flag
vote up 1 vote down

Just use a route:

// We couldn't find a route to handle the request.  Show the 404 page.
routes.MapRoute("Error", "{*url}",
    new { controller = "Error", action = "404" }
);

Since this will be a global handler, put it all the way at the bottom under the Default route.

link|flag
Is this right? Because sure if I define a route for {controller}/{action}/{id} lets say, and the user enters the url with a controller that doesn't exist then it will yellow-screen as that first route will match and your catch all will never be reached? – jmcd Oct 22 '08 at 19:48
vote up 1 vote down

Found this on the same site - Strategies for Resource based 404s

link|flag

Your Answer

Get an OpenID
or

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