vote up 2 vote down star
5

Hi folks,

Is it possible to create a final route that catches all .. and bounces the user to a 404 view in ASP.NET MVC?

NOTE: I don't want to set this up in my IIS settings.

flag

76% accept rate

2 Answers

vote up 6 vote down check

Found the answer myself.

Richard Dingwall has an excellent post going through various strategies. I particularly like the FilterAttribute solution. I'm not a fan of throwing exceptions around willy nilly, so i'll see if i can improve on that :)

For the global.asax, just add this code as your last route to register:

routes.MapRoute(
    "404-PageNotFound",
    "{*url}",
    new { controller = "StaticContent", action = "PageNotFound" }
    );
link|flag
I've tried this, but it doesn't work. I have put the route under my default route, but i still get 404 errors. – Martijn Apr 9 at 12:48
Hmm. i think it works for me. – Pure.Krome Apr 9 at 14:58
Can you please explain what exactly I have to assuming I am very new to MVC. – Tanmoy Jun 16 at 12:57
2 things. a) add that last route to your route list. b) create a controller (in my example, i called it StaticContentController) with an Action method (in my example, i added a method called PageNotFound(..)) add logic this method to display the 404 page not found, View. – Pure.Krome Jun 17 at 3:08
1  
If you still have the default route (I.E. {controller}/{action}/{id}) in RegisterRoutes() it will trap all URLs that match the format of a normal MVC request. In other words the catch-all route can only intercept a bad URL if it doesn't fit the normal format (blah/blah/blah/blah). In the case of a non-existent controller the exception must be handled through conventional ASP.NET handling. Theres a good description of handling at stackoverflow.com/questions/619895/… – RonnBlack Jul 14 at 1:38
vote up 0 vote down

This might be a problem when you use

throw new HttpException(404);

When you want to catch that, I don't know any other way then editing your web config.

link|flag
ActionFilters : use them to catch the HttpException. – Pure.Krome Nov 23 '08 at 3:04
What if the exception is not thrown by a controller action? I throw a 404 in my controller factory. – Paco Nov 23 '08 at 13:38
Not sure then - i'm not playing around with controller factories. soz. – Pure.Krome Apr 9 at 14:59
1  
Controllerfactory is not the only place where it can happen. I map a catch all route to an actionmethod that just throws the exception. The exception is handled by the web.config – Paco Apr 9 at 17:52

Your Answer

Get an OpenID
or

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