http 和https互相转化 摘自《张宴》

1:如果网页使用https访问

    <?php

         //http转化为https

         if($_server['HTTPS']<>'on'){

           $xredir = "https://".$_server['server_name']; //运行脚本所在服务器的主机名字

          $_server["REQUEST_URL "];  //访问页面所需要的URL

          header("localost: ".$xredid);  

    }

    ?>

2:如果网页使用http访问

    <?php

       //https转化为http

         if($_server['HTTPS'] == 'on'){

           $xredir = "http://".$_server['server_name'];

          $_server["REQUEST_URL"]; //访问页面所需要的URL

          header("localost: ".$xredid);  

    }

    ?>


你可能感兴趣的:(http 和https互相转化 摘自《张宴》)