How to handle invalid URLs in MVC?

For ex.: When the user enters http://localhost/User/MyProfile instead of http://localhost/User/Profile, it will throw an exception.

How to handle this request?

link|improve this question

71% accept rate
feedback

3 Answers

up vote 5 down vote accepted

You need first to add a custom Error page url in the web.config:

<customErrors mode="On" defaultRedirect="~/Error/404" />

And add a controller to handle the invalid urls:

public class ErrorController:Controller
    {
        [ActionName("404")]
        public ActionResult Error404()
        {
            return View("Error");
        }
    }

And if you want to redirect the user to the home page then you don't need the Error controller just modify the custom error tag:

<customErrors mode="On" defaultRedirect="~/Home/Index" />
link|improve this answer
This seems correct... – Arnis L. May 24 '09 at 11:49
Thanks marwan and Arnis. It worked – Prasad May 24 '09 at 11:56
1  
Actually, i will need this soon. I helped myself too (favorited this question). – Arnis L. May 24 '09 at 12:11
feedback

Did you mean this?

// Show a 404 error page for anything else.
    routes.MapRoute("Error", "{*url}",
    new { controller = "Error", action = "404" }
);
link|improve this answer
1  
ya exactly like that, but when i used that code, its not redirecting to the specified page. Still showing "The resource cannot be found.". I have added the following in Global.asax.cs: routes.MapRoute("Error", "{*url}", new { controller = "Home", action = "Index" }); – Prasad May 24 '09 at 11:35
feedback

I think every request should be redirected to the front controller, so wrap your code inside a try/catch block that will intercept the exception, and maybe you can redirect to the homepage in the catch block or simply raise a 404 error with an exception handler.

What is your server language ?

link|improve this answer
i am using MVC with C#. – Prasad May 24 '09 at 11:09
It's tagged asp.net-mvc-routing – Arnis L. May 24 '09 at 11:09
Sorry for being irrelevant ^^ – SleepyCod May 25 '09 at 19:11
feedback

Your Answer

 
or
required, but never shown

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