本文转自:http://zyan.cc/post/142/

1、如果网页使用https访问,在网页开头加入以下代码:

<?php    
//http转化为https     
if ($_SERVER["HTTPS"]<>"on")    
{    
$xredir="https://".$_SERVER["SERVER_NAME"].    
$_SERVER["REQUEST_URI"];    
header("Location: ".$xredir);    
}     
?>    

2、如果网页使用http访问,在网页开头加入以下代码:

<?php    
//https转化为http     
if ($_SERVER["HTTPS"]=="on")    
{    
$xredir="http://".$_SERVER["SERVER_NAME"].    
$_SERVER["REQUEST_URI"];    
header("Location: ".$xredir);    
}     
?>

  

posted on 2017-11-03 17:52  夏沫忆香  阅读(3777)  评论(0编辑  收藏  举报