我正在尝试在一个小型网站上推出 HTTPS,但更改很少,我正在我想要保护的页面顶部添加代码......
<?php
$securepage ="1";
if ($_SERVER['HTTPS']=='on') {
// we are on a secure page.
if (!$securepage) {
// but we shouldn't be!
$url='http://www.mywebsite.com'.$_SERVER['REQUEST_URI'];
header('location: '.$url);
exit;
}
} else {
// we aren't on a secure page.
if ($securepage) {
// but we should be!
$url='https://www.mywebsite.com'.$_SERVER['REQUEST_URI'];
header('location: '.$url);
exit;
}
}
?>
我不想保护的页面我删除了以下内容......
$securepage ="1";
但是当我尝试加载页面时,我收到一条错误消息,指出页面被重定向了太多次。
有人对上面的代码有什么问题有任何指示吗?