xxxxxxxxxx
//PHP redirect
header("Location: https://www.codegrepper.com/my-redirect-page.php");
die();
xxxxxxxxxx
if (/*Condition to redirect*/){
//You need to redirect
header("Location: http://www.yourwebsite.com/user.php"); /* Redirect browser */
exit();
}
else{
// do some
}
xxxxxxxxxx
//Write this in the Controller when working on Laravel.
header('Location: http://www.example.com/');
exit;
xxxxxxxxxx
header("Location: http://example.com/redirect_page.php");
die(); //Force the script to quit, or you would raise an error...