The code is very simple and involves the use of the header function. The code is as follows
Copy the code The code is as follows:
if (!empty($_SERVER['HTTPS']) && ('on' == $_SERVER['HTTPS'])) {
$uri = 'https://';
} else {
$uri = 'http://';
}
$uri .= $_SERVER['HTTP_HOST'];
header('Location: '.$uri.'/demo/ ');
exit;
?>
Code explanation: I will first determine whether you have https enabled. If so, it will be a normal https page. If it is not started, it will jump. Go to the project directory
http://www.bkjia.com/PHPjc/326698.htmlwww.bkjia.comtruehttp: //www.bkjia.com/PHPjc/326698.htmlTechArticleThe code is very simple and involves the use of the header function. The code is as follows. Copy the code as follows: ?php if (!empty ($_SERVER['HTTPS']) ('on' == $_SERVER['HTTPS'])) { $uri = 'https://'; } els...