I\'m trying to configure an Angular/ASP.NET 5 application on IIS to support deep linking, so that a URL such as domain.com/article/title-slug works
I\'ve added the follo
Was running into the same issue. After tinkering with a number of things, changing the base href tag in the index.html file to the fully qualified Url is what finally fixed it for me.
Before:
MySubApp
After:
MySubApp
My Rewrite rule:
My use case was setting up an application under the default website, so your setup might be different.