I have set the base ref like this for an Angular 2 app
If I go to localhost/MyApp everything works correctly.
You will have to write code to override base href.
Possible locations you can override is 1. Angular2: Make route paths case insensitive
You write your own location strategy & Ignore case sensitivity there. And in your app.module.ts, you tell ur Angular 2 app to use custom location strategy in your providers section.
{provide:LocationStrategy,useClass:CustomPlatformLocation},