Return to index.html

0
I have an application supporting both named users (url: .../login.html) and anonymous users (url: .../link/xxx because I need the xxx to identify some data the anonymous users are working with). Signing off from any user returns the .../index.html page. This is ok for anonymous users because they have to use the xxx thing. However I would like named users to be addressed to the login.html page. How?
asked
1 answers
2

rename index.html to index3.html and login.html to index.html Default all users will enter index.html (login) and will be redirected to index3.html after login. Anonymous users will use the deeplink and will be returned to index.html or index3.html, both require a login.

Is this what you're trying to achieve?

answered