I want to customize URL for my asp.net mvc application. Currently I am working on asp.net MVC 4.5
Case : 1
Current URL : localhost/Country/Index/param1
Expected URL : localhost/param1
Case : 2
Current URL : (1) localhost/Country/Index/param1 (Param1 is name of country)
(2) localhost/State/Index/param11 (param11 is name of state)
Expected URL : localhost/param1/param11 (I need second url like this.)
Thanx in Advance.