How to Redirect url in route config in Asp.net Mvc...
My controller is "Home" and action is "Categories"
My url is localhost:49606/Home/Categories
now i changed using routes below
routes.MapRoute(
name: "Categories",
url: "Categories",
defaults: new { controller = "Home",
action = "Categories",
id = UrlParameter.Optional }
);
New url is localhost:49606/Categories
But still localhost:49606/Home/Categories
url is avilabe...
I want to redirect localhost:49606/Home/Categories
to localhost:49606/Categories
.
or
Hide url localhost:49606/Home/Categories
.
Please suggest me good way to redirect url or hide? I want to redirect url in route config file in asp.net mvc 5