I am facing a challenge with my large Angular app that is currently accessible through the following URL:
http://myangularapp.com/app/index.html#/
In order to support multiple users, I need to dynamically inject a name into the URL that I will be sharing with users.
Without making any changes to the directory structure, I would like to achieve the following URLs:
http://myangularapp.com/app/bob/index.html#/
and also:
http://myangularapp.com/app/harry/index.html#/
I want all my controllers and functionality to remain the same despite this dynamic naming requirement.
This has me completely stumped!