I have routing implemented in an Angular 2 app using the default path location strategy. It works fine, except that when reloading a non-default URL path, the component associated with the default route is rendered rather than the component associated with the route path.
For example, http://localhost:5000/locator/bycounty
displays the component at http://localhost:5000
when reloading the URL from the server (I have server-side routing set to resolve all static paths to the same file).
Is that expected behavior or is my app misbehaving?