i have this url http://localhost:17643/category/1/Home/Arts/
It shoud redirect to home/index?idCategory=1
Instead i get a page not found.
the RouteRegistrar is:
routes.MapRoute(
"Category",
"category/{idCategory}/{categories}",
new { controller = "home", action = "index", idCategory = "" }
);
routes.MapRoute(
"Default", // Route name
"{controller}/{action}/{id}", // URL with parameters
new { controller = "Home", action = "Index", id = UrlParameter.Optional } // Parameter defaults
);
Thank you