php判断https强制跳转http

因为之前买的老域名是https,不得不开https,但是现在的站是http,毕竟http收录好一些,所以要做强制判断https跳转http。上代码:

//判断是否https
if ($_SERVER['SERVER_PORT']!="80")
{
   $xredir = "http://www.456px.com/";
   header("Location: ".$xredir);
}

  这样就搞定了,醉学网-让您提分更轻松! (04411.net)

posted @ 2022-09-13 16:27  圆柱模板  阅读(282)  评论(0编辑  收藏  举报