0
Q:

header location in php

<?php
// This will just redirect you to example.com
header("Location: https://example.com");  
?>
3
<?php
// This will redirect  to google.com
$url = "https://google.com";
header("Location: $url");  
?>
8
<?php
/*
	This will redirect  to facebook.com
*/
$url = "https://facebook.com.com";
header("Location: $url");  
exit;
?>
2
header('Location: http://www.example.com/');
2
<?php
// This will just redirect you to example.com
$url = "https://example.com";
header("Location: $url");  
?>
3
/*
This will just redirect you to example.com
*/

<?php
$url = "https://example.com";
header("Location: $url");  
exit;
?>

/* I hope it will help you. Namaste */
2

New to Communities?

Join the community