Configuring ASP.NET Core for Angular 2 Deep Linking
Angular 2 default routing uses history.PushState which allows us to use more natural routes such as “http://server.net/products/2” instead of “http://server.net/#products/2”. We could still configure Angular 2 to use all state hash bang routes as well, but all modern supported browsers support pushState already, so why go with less supported configuration? So, we should go on …
Continue reading ‘Configuring ASP.NET Core for Angular 2 Deep Linking’ »