10-24-2016, 10:21 PM
In the login.php script there is a redirect:
After logging in the user ends up on the account page so this works. However, I changed it to:
but it still goes to account.php.
Is there another part of the US code that is causing the redirect to the account.php page?
Code:
Redirect::to('account.php');
After logging in the user ends up on the account page so this works. However, I changed it to:
Code:
Redirect::to('index.php'); //this is in the root folder not in the users folder
but it still goes to account.php.
Is there another part of the US code that is causing the redirect to the account.php page?