如果阅读了一些帖子并编写了这段代码......但它不起作用。我在同一主机帐户中有2个域名。我喜欢将访问者重定向到flash wordpress网站,具体取决于他们使用的域名。 这是我的代码:
<?php
$host = $_SERVER['SERVER_NAME'];
if($host == 'elfarosociedades.com.ar' or $host == 'http://www.elfarosociedades.com.ar/' or $host == 'http://elfarosociedades.com.ar/' or $host == 'www.elfarosociedades.com.ar') {
header('Location: http://www.elfarosociedades.com.ar/index.php');
else
header('Location: http://villarincondelsol.com.ar/home.html');
}
?>
答案 0 :(得分:1)
试试这个
<?php
$host = $_SERVER['HTTP_HOST'];
$hosts=array(
'elfarosociedades.com.ar' ,
'http://www.elfarosociedades.com.ar/' ,
'http://elfarosociedades.com.ar/' ,
'www.elfarosociedades.com.ar'
);
if(in_array($host, $hosts)) {
header('Location: http://www.elfarosociedades.com.ar/index.php');
}else {
header('Location: http://villarincondelsol.com.ar/home.html');
}
?>