码迷,mamicode.com
首页 > Web开发 > 详细

php实现http与https转化

时间:2018-08-16 19:56:34      阅读:263      评论:0      收藏:0      [点我收藏+]

标签:head   server   实现   nbsp   https   location   uri   网页   pre   

如果网页使用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);  
      }   
      ?>  

 

 

php实现http与https转化

标签:head   server   实现   nbsp   https   location   uri   网页   pre   

原文地址:https://www.cnblogs.com/930115586qq/p/9488903.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!