@Juraj, but is it possible to know which user is logging in at that moment?
An alternative is placing an macro in URL redirection of the navigation property on your logon page.
You can do this for example based on the role of the user with this macro:
{% CurrentUser.IsInRole("{roles}") ? "/DocLibrary/RBC.aspx" : "" |(identity)GlobalAdministrator%}
Offcourse you can also use other properties like UserID, FullName, etc.
If this answer helped you, please vote for my answer :-)