php header location 302 code example
Example 1: php redirect
header("Location: http://example.com");
die();
Example 2: header location in php
<?php
// This will redirect to google.com
$url = "https://google.com";
header("Location: $url");
?>
header("Location: http://example.com");
die();
<?php
// This will redirect to google.com
$url = "https://google.com";
header("Location: $url");
?>