上次发了一个ASP多个域名绑定一个空间互不影响 人气旺旺的。http://www.webjx.com/htmldata/2005-03-21/1111371943.html
<?php
$domain_net="abc.com";
$dot_net_url="bbs/";
$dot_com_url="flash";
if(($HTTP_HOST=="$domain_net")or($HTTP_HOST=="www.$domain_net"))
{
Header("Location: $dot_net_url");
}
else
{
Header("Location: $dot_com_url");
}
?>
时间: 2024-10-31 11:39:04