Hi Webflowers,
I’m working with membership beta and I would like my app can redirect home page url to members page if the user is logged in.
The current behavior is:
-
User goes to
myapp.com
(home page) -
User log in
-
Redirect to member page
myapp.com/members
The thing is if the user is still login and they type myapp.com
, they are redirecting to myapp.com
But I want to redirect them to myapp.com/members
if they type myapp.com
and they are logged in.
If they are not logged in, the app should redirect to myapp.com
Expected behavior:
User logged in
-
Type
myapp.com
-
Instead of redirect to
myapp.com
redirect tomyapp.com/members
User no logged in
-
Type
myapp.com
-
Redirect to
myapp.com
Is there any way to do that? Or something similar?