chenl
2018-12-03 5f139ca9838ba11f3b8428203698f94c660935cc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?php
/**
 * [WeEngine System] Copyright (c) 20181025112639 WE7.CC
 * WeEngine is NOT a free software, it under the license terms, visited http://www.we7.cc/ for more details.
 */
 
require './framework/bootstrap.inc.php';
 
$host = $_SERVER['HTTP_HOST'];
if (!empty($host)) {
    $bindhost = pdo_fetch("SELECT * FROM ".tablename('site_multi')." WHERE bindhost = :bindhost", array(':bindhost' => $host));
    if (!empty($bindhost)) {
        header("Location: ". $_W['siteroot'] . 'app/index.php?i='.$bindhost['uniacid'].'&t='.$bindhost['id']);
        exit;
    }
    
}
if($_W['os'] == 'mobile' && (!empty($_GPC['i']) || !empty($_SERVER['QUERY_STRING']))) {
    header('Location: ./app/index.php?' . $_SERVER['QUERY_STRING']);
} else {
    header('Location: ./web/index.php?' . (!empty($_SERVER['QUERY_STRING']) ? $_SERVER['QUERY_STRING'] : 'c=account&a=display'));
}