php重定向,如果域名

时间:2015-08-10 16:09:33

标签: php redirect dns

如果阅读了一些帖子并编写了这段代码......但它不起作用。我在同一主机帐户中有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'); 
}
?>

1 个答案:

答案 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'); 
}
?>