I have an app that uses HashLocationStrategy and I want to change it to PathLocationStrategy. The issue is that I don't want to break existing links (ie bookmarked by users).
The main idea is to receive urls like localhost:3002/#/crisis-center
and redirecting to localhost:3002/crisis-center
How can I configure this apart from removing useHash from the code below?
RouterModule.forRoot(routes, { useHash: true })
I decided to contribute what I ended up doing:
Fist I thought I would give the solution in a Guard associated with my application:
As I realised, only external links would be broken. Internal ones are formed by Angular's router. Then I thought why whould I wait for the router to get triggerred so an alternative is to add it in index.html first thing first in head tag: