If we have \"example_name\" we can change it in url using [ActionName(\"\")] So, i want to do this for controller name.
I can do t
You can use Attribute Routing.
[RoutePrefix("Users")] public class HomeController : Controller { //Route: Users/Index [Route("Index")] public ActionResult Index() { return View(); } }