get_one("SELECT userid FROM {$DT_PRE}company WHERE domain='$w3'");
if($c) d301('http://'.$w3);
}
$c = $db->get_one("SELECT username,domain FROM {$DT_PRE}company WHERE domain='$whost'".($host == $whost ? '' : " OR domain='$host'"), 'CACHE');
if($c) {
$username = $homepage = $c['username'];
$domain = $c['domain'];
}
}
}
}
if($username) {
$moduleid = 4;
$module = 'company';
$MOD = cache_read('module-'.$moduleid.'.php');
include load('company.lang');
require DT_ROOT.'/module/'.$module.'/common.inc.php';
include DT_ROOT.'/module/'.$module.'/init.inc.php';
} else {
if($DT['safe_domain']) {
$safe_domain = explode('|', $DT['safe_domain']);
$pass_domain = false;
foreach($safe_domain as $v) {
if(strpos($DT_URL, $v) !== false) { $pass_domain = true; break; }
}
$pass_domain or dhttp(404);
}
if($DT['index_html']) {
$html_file = $CFG['com_dir'] ? DT_ROOT.'/'.$DT['index'].'.'.$DT['file_ext'] : DT_CACHE.'/index.inc.html';
if(!is_file($html_file)) tohtml('index');
if(is_file($html_file)) exit(include($html_file));
}
$AREA or $AREA = cache_read('area.php');
if($EXT['mobile_enable']) $head_mobile = DT_MOB;
$index = 1;
$seo_title = $DT['seo_title'];
$head_keywords = $DT['seo_keywords'];
$head_description = $DT['seo_description'];
$CSS = array('index');
if($city_template) {
include template($city_template, 'city');
} else {
include template('index');
}
}
?>