PHP实现http与https转化

| |
[不指定 2010/01/04 15:55 | by suibing ]
如果网页使用https访问,在网页开头加入以下代码:

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


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


<?php  
//https转化为http    
if ($_SERVER["HTTPS"]=="on")  
{  
$xredir="http://".$_SERVER["SERVER_NAME"].  
$_SERVER["REQUEST_URI"];  
header("Location: ".$xredir);  
}    
?>  
技术文章 | 评论(0) | 引用(0) | 阅读(360)