跳到正文

PHP 域名转发程序,适合一个空间实现多个域名

switch ($_SERVER[“HTTP_HOST”]) {
  case “www1.aspcn.net”:
      header(“location:index1.htm”);
      break;
  case “www2.aspcn.net”:
      header(“location:index2.htm”);
      break;
  case “www3.aspcn.net”:
      header(“location:index3.htm”);
…… 继续添加 ……
      break;
}
?>