I have one default route in my routeconfig.cs file
routes.MapRoute(
name: "Default",
url: "{controller}/{action}/{id}",
defaults: new { controller = "Home", action = "Index", id = UrlParameter.Optional }
);
It will hide Home/Index as Url in browser. My target is to display localhost:44300/Login instead of localhost:44300/Home/Index (but internally it will call Home/Index) and I want to hide Home/Details action method as url