Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

header location in php

/*
This will just redirect you to example.com
*/

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

/* I hope it will help you. Namaste */
 
PREVIOUS NEXT
Tagged: #header #location #php
ADD COMMENT
Topic
Name
8+1 =