2
我試圖推出HTTPS上一個小網站以最小的變化,我在我想保護的頁面的頂部添加代碼...在PHP網站有效添加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";
但是當我嘗試加載頁面我得到一個錯誤說該網頁的重定向次數過多。
任何人有任何指針,什麼是錯與上面的代碼?
嘗試http://tools.seobook.com/server-header-checker/檢查'頭()'s的工作 – Raekye