您的位置:首页 > 其它

虚拟主机下实现多域名绑定不同的子目录的方法

2010-03-16 19:57 761 查看
<?php $domain_net=" a.com "; $domain_com="b.com"; $dot_net_url="index.html"; $dot_com_url="index.asp"; if(($HTTP_HOST=="$domain_net")or($HTTP_HOST==" www.$domain_net ")) { Header("Location: $dot_net_url"); } elseif(($HTTP_HOST=="$domain_com")or($HTTP_HOST==" www.$domain_com")) { Header("Location: $dot_com_url"); } else { include_once('index.php'); } ?>
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
相关文章推荐