使用php将http转化为https的方法
<?php
//http转化为https
if ($_SERVER["HTTPS"]"on")
{
$xredir="https://".$_SERVER["SERVER_NAME"].
$_SERVER["REQUEST_URI"];
header("Location: ".$xredir);
}
?>
本文来源:https://www.yuntue.com/post/59219.html | 云服务器网,转载请注明出处!
php怎样把http改成https使用php将http转化为https的方法//http转化为https if ($_SERVER[\”HTTPS\”]\”on\”) { $xredir=\”https://\”.$_SERVER[\”SERVER_NAME\”]. $_SE