You are on page 1of 1

header('Location: https://www.google.

com'); exit();

<?php
header('refresh:5;url=redirectpage.php '); // Note: here 5 means 5 seconds wait
for redirect.
?>

$your_target_url = “www.example.com/index.php”;
header(“Location : $your_target_url”);
exit();

You might also like