This is an MVC 6/WebApi application. I\'m attempting to use WebApi on the backend with AngularJS on the frontend.
I have two static files: index.html
I was able do what you are asking here. Basically, I added a catch all route to my index action:
[Route("{*path}")]
meaning if no MVC action does not exist, call my Index action and angular routing will take from there