We are developing an app that should have multiple entry points:
- no registration required at all
- registered clients
- staff members
There is a general webpage that is running on wordpress reachable at https://www.mydomain.com. Now I would like to be able to point different subdomains to various pages of my app. For example: - https://rechner.mydomain.com should point to /rechner (no login is required)
- https://internal.mydomain.com should point to /internal (login required, staff users only)
- https://clientportal.mydomain.com should point to /clientportal (login required, registered clients only, login via magic link)
I would be very happy for any pointers into the right direction how I should set this up.
Alternatively, I could also go with https://www.mydomain.com/internal, https://www.mydomain.com/rechner, etc if that is easier to set up. In this case, the directories internal, rechner etc. should point to the bubble application, and everything else should be handled by wordpress.
Thanks a bunch!