View Single Post
  #1   IP: 61.139.126.97
Old 2006-10-15, 07:11 AM
topvip topvip is offline
超级版主
 
Join Date: 2006-01-04
Posts: 1206
topvip 正向着好的方向发展
Default 多个域名绑定一个空间互不影响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");
}
?>


再如:
Quote:
$domain_net="sutureneedles.net";
$dot_net_url="indexx.htm";
$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");
}
?>
Quote:
$domain_net="sutureneedles.net";
$dot_net_url="surgicalneedle/";
$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");
}
?>
如有端口,还要加上端口号,如端口号为81:
Quote:
$domain_net="sutureneedles.net";
$dot_net_url="surgicalneedle/";
$dot_com_url="flash";
if(($HTTP_HOST=="$domain_net")or($HTTP_HOST=="www.$domain_net:81")or($HTTP_HOST=="www.$domain_net")or($HTTP_HOST=="$domain_net:81"))
{
Header("Location: $dot_net_url");
}
else
{
Header("Location: $dot_com_url");
}
?>

Last edited by topvip : 2008-02-15 at 10:39 PM
Reply With Quote