xxxxxxxxxx
<% String redirectURL = "http://domain.com/";
response.sendRedirect(redirectURL); %>
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
header("Location: http://example.com/redirect_page.php");
die(); //Force the script to quit, or you would raise an error...