<?php
// This will just redirect you to example.com
header("Location: https://example.com");
?>
<?php
// This will just redirect you to example.com
$url = "https://example.com";
header("Location: $url");
?>
/*
This will just redirect you to example.com
*/
<?php
$url = "https://example.com";
header("Location: $url");
exit;
?>
/* I hope it will help you. Namaste */
<?php
/*
This will redirect to facebook.com
*/
$url = "https://facebook.com.com";
header("Location: $url");
exit;
?>
<?php
// This will redirect to google.com
$url = "https://google.com";
header("Location: $url");
?>
<?php
// Redirect to mywebsite.com
header("location:https://mywebsite.com");
?>
<?php
header('Location: http://www.example.com/');
?>
header('Location: http://www.example.com/');
header( "refresh:5;url=wherever.php" );