1234567891011121314151617 |
- <?php
- 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?' . $_SERVER['QUERY_STRING']);
- }
|