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.

link|improve this question

feedback

3 Answers

up vote 21 down vote accepted

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|improve this answer
3  
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 '09 at 12:48
Hmm. i think it works for me. – Pure.Krome Apr 9 '09 at 14:58
Can you please explain what exactly I have to assuming I am very new to MVC. – Tanmoy Jun 16 '09 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 '09 at 3:08
12  
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 '09 at 1:38
show 2 more comments
feedback

This question came first, but the easier answer came in a later question:

Custom ASP.NET MVC 404 Error Page

I got my error handling to work by creating an ErrorController that returns the views in this article. I also had to add the "Catch All" to the route in global.asax.

I cannot see how it will get to any of these error pages if it is not in the Web.config..? My Web.config had to specify:

customErrors mode="On" defaultRedirect="~/Error/Unknown"

and then I also added:

error statusCode="404" redirect="~/Error/NotFound"

Hope this helps.

I love this way now because it is so simple:

 <customErrors mode="On" defaultRedirect="~/Error/" redirectMode="ResponseRedirect">
    <error statusCode="404" redirect="~/Error/PageNotFound/" />
 </customErrors>
link|improve this answer
That's what I have now, but I'm trying to replace it with a better solution which will not first send a 302 response to the client but a 404 directly. Change the redirectMode to ResponseRewrite and you'll find it does not work any more... :-( – Louis Somers May 20 at 22:06
@LouisSomers Since this answer, I have found the better way is the one described in this question: stackoverflow.com/questions/1171035/… I prefer not to redirect the user to a different URL because it is less user-friendly (even I find it annoying while developing). Cheers. – smdrager May 21 at 0:52
feedback

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|improve this answer
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 '09 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 '09 at 17:52
Throw any Exception you want. Let all your controller derived from a BaseController. In this BaseController you override OnException and set the filterContext.Result either redirect or view result. – CallMeLaNN May 19 '11 at 8:25
feedback

Your Answer

 
or
required, but never shown

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