<?php

$s 
preg_replace('/www\./'''$_SERVER['HTTP_HOST']);

$a = Array(
    
'favicon.info' => '',
    
'topazio.org' => '',
    
'ziare.tv' => '',
    
'romgrains.com' => '',
    
'laserbabe.com' => '',
    
'business1.biz' => '',
    
'johnmartinmd.com' => ''
);

if (isset(
$a[$s])) {
    
header("Location: http://mail.google.com/a/" $s);
    exit;
} else {
    
header(' 'true404);
}

?>