欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

同一空间绑定多个域名而实现访问不同页面的PHP代码_PHP教程

程序员文章站 2022-05-11 17:53:43
...
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;
}
?>

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/317272.htmlTechArticle?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": hea...