文章摘要:php怎么把http改为https
使用php将http转化为https的方法 声明: 若非注明,本站文章源于互联网收集整理和网友分享发布,如有侵 […]
使用php将http转化为https的方法
//http转化为https
if ($_SERVER["HTTPS"]<>"on")
{
$xredir="https://".$_SERVER["SERVER_NAME"].
$_SERVER["REQUEST_URI"];
header("Location: ".$xredir);
}
?>