做这个的前提是,先自行配置好https环境。
接下来在首页的位置加上
<?php
switch ($_SERVER["HTTP_HOST"])
{
case "mmgg.net":
header("location:https://www.mmgg.net");
break;
}
//http转化为https
if ($_SERVER["HTTPS"] <> "on")
{
$xredir="https://".$_SERVER["SERVER_NAME"].$_SERVER["REQUEST_URI"];
header("Location: ".$xredir);
}
?>
其他语言以此类推。
当然还可以做302跳转。