同一空间绑定多个域名而实现访问不同页面的PHP代码
2018-09-07 13:59
阅读:275
<?php
switch($_SERVER[HTTP_HOST]){
case
header(location:index1.htm);
break;
header(location:index2.htm);
break;
casewww3.aspcn.net:
header(location:index3.htm);
......继续添加......
break;
}
?>
下一篇:PHP实现的文件上传类与用法详解
评论
亲,登录后才可以留言!