I'm looking for some help regarding the use of dynamic words in my Base URL.
Consider for example Slack. If i write abcd.slack.com it finds a work space name abcd and redirects me to the login page of the work space. I need a similar implementation in my Angular website. I don't know how to implement such thing. In Angular routing i can only provide the paths which comes after the base URL. How can i implement such thing that also works on my production environment.
For example This is the usual URL in our development environment http://localhost:4200/signin
Can i do something like this
http://xxxx.localhost:4200/signin
where i can set xxxx as my dynamic data to perform some backend queries
I think is the same as abcd.slack.com