I have this route:
http://example.com/home/solucoes
But I Would to call like http://example.com/any-category/any-thing
My controlller is "Home" and action is "solucoes"
I try use it, but not work
routes.MapRoute(
name: "DefaultSolucoes",
url: "{categoria}/{page}",
defaults: new {
controller = "Home",
action = "solucoes",
categoria = UrlParameter.Optional,
page = UrlParameter.Optional }
);