我好像动了什么奇怪的开关。。把网站外观都搞丢了。。等修。。。

MENU

php一句代码实现http跳转https

ThinkPHP用户直接插入到index.php,其他框架插到入口某共公加载的文件中,即可一句代码实现整站跳转https。本站为实例。

//方法一 https状态
if(!isset($_SERVER['HTTPS']) || $_SERVER['HTTPS'] == 'off'){
Header("HTTP/1.1 301 Moved Permanently");
header('Location: https://'.$_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI']);
}

//方法二 判断端口
if($_SERVER['SERVER_PORT']=="80"){
Header("HTTP/1.1 301 Moved Permanently");
header('Location: https://'.$_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI']);
}

内容来源于网络。

Last Modified: April 21, 2020
Leave a Comment

4 Comments
  1. 不错,标记一下以后用得上

    1. @佛系派::quyin:funny::

  2. 诶?HTML标签跳转不可以的吗?

    1. @丛林意志条条大路通罗马\#(高兴)

0:00