Route Redirect #2528
Unanswered
GlenWarren
asked this question in
Q&A
Route Redirect
#2528
Replies: 1 comment 5 replies
-
This packet does not use the |
Beta Was this translation helpful? Give feedback.
5 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Is it possible to redirect a route path to another one?
Currently, if someone goes to path
/home
they get a 404 Not Found error. When a user is already logged in, if they navigate to/login
, they are automatically redirected to/home
which results in 404.I have
'home' => '/admin/main',
set in my fortify config.How can I redirect users to
'/admin/main'
if they navigate to/home
? Can I add custom redirects in theroutes.php
file?I have also previously been unable to fix the redirect when a user logs out. See here: #2206
Beta Was this translation helpful? Give feedback.
All reactions