I'm very new too ASP.net and after a ton of searching could not find an answer to my issue. Right now we have the current route configured in Global.asax.cs
config.Routes.MapHttpRoute(
name: "default",
routeTemplate: "version/{controller}",
defaults: new { category = "all" }
);
which will give https:localhost:0000/project/version/index
but I want to be able to have all requests from https:localhost:0000/api/version/index to lead be mapped to that location.
I was wondering if this is a routing issue or something that needs to be done in Web.Config