Home >Backend Development >PHP Tutorial >PHP page jump code Enter the URL to jump to the page you defined_PHP tutorial

PHP page jump code Enter the URL to jump to the page you defined_PHP tutorial

WBOY
WBOYOriginal
2016-07-21 15:12:231011browse

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

www.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...
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn