Change URL of action in mvc
问题 Is there a way to change the URL of a given action in mvc without changing the action or controller called? If so, how would this be done on the following MapRoute: routes.MapRoute( "Estate.CloseDeal", "Estate/CloseDeal/{groupId}/{paymentType}/{mortgageValue}/{province}", new { controller = "Estate", action = "CloseDeal" }, new { groupId = "\\d+", paymentType = "\\d+", mortgageValue = "\\d+", province = "\\d+" } ); The desired URL is: ".../estate-support/deal-closing/...". Currently it