You can only have one redirect URL per application. What I would recommend is have a single “landing page” that will accept the token response and then redirect the user back to the correct part of the application based on where they were located before starting the auth handshake process.
You could store this info in the state param so it will be accessible to your application after the auth handshake is done.
(This may only apply to the authorization code flow. I’m not sure if implicit supports state for not.)