Disabling Default Routes on Asp.net Mvc – SEO
I am using Asp.net Mvc 5 with C#. I want to disable default routing in my project. My map routes like; routes.MapRoute(name: "News", url: "haberler", defaults: new { controller = "News", action = "Index"}); routes.MapRoute( name: "Default", url: "{controller}/{action}/{id}", defaults:…