I want to use classic MVC controllers alongside WebAPI controllers in the same project. The classic MVC controllers will return static content, like the HTML for pages. All data will be passed around with the WebAPI.
The problem is that the controller class names end up being the same.
Since WebAPI sticks API/ in the front, there's no routing conflict.
I thought about creating an area and just adjusting the routing.
Any ideas?