1 Star 0 Fork 929

飞牛天使 / IBOS

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
index.php 1.88 KB
一键复制 编辑 Web IDE 原始数据 按行查看 历史
seekArt 提交于 2017-03-14 15:58 . 更新新版用户选择器
<?php
/**
* 索引页
*
* @link http://www.ibos.com.cn/
* @copyright Copyright &copy; 2012-2014 IBOS Inc
* @author banyanCheung <banyan@ibos.com.cn>
*/
if (version_compare(PHP_VERSION, '5.3.0', '<')) {
die('require PHP > 5.3.0 !');
}
// 程序根目录路径
define('PATH_ROOT', dirname(__FILE__));
if ($_SERVER['HTTP_HOST'] == 'saas.ibos.cn') {
include PATH_ROOT . '/login.php';
die;
}
$defines = PATH_ROOT . '/system/defines.php';
$yii = PATH_ROOT . '/library/yii.php';
$config = PATH_ROOT . '/system/config/common.php';
require_once ( $defines );
require_once ( $yii );
require_once PATH_ROOT . '/library/globals.php';
Yii::setPathOfAlias('application', PATH_ROOT . DIRECTORY_SEPARATOR . 'system');
$str = strtolower($_SERVER['SERVER_SOFTWARE']);
list($server) = explode('/', $str);
if ($server == "apache" || $server == "nginx" || $server == "lighttpd") {
if (isset($_SERVER['HTTP_ORIGIN'])) {
header('Access-Control-Allow-Origin: ' . $_SERVER['HTTP_ORIGIN']);
}
header('Access-Control-Allow-Headers: Origin, Accept, Content-Type, Authorization, ISCORS');
header('Access-Control-Allow-Credentials: true');
header('Access-Control-Allow-Methods: POST, GET, PUT, OPTIONS, DELETE');
if ($_SERVER['REQUEST_METHOD'] == 'OPTIONS') {
exit();
}
} else if ($server == "iis") {
if ($_SERVER['REQUEST_METHOD'] == 'OPTIONS') {
// CORS 设置,有待讨论
if (isset($_SERVER['HTTP_ORIGIN'])) {
header('Access-Control-Allow-Origin: ' . $_SERVER['HTTP_ORIGIN']);
}
header('Access-Control-Allow-Headers: Origin, Accept, Content-Type, Authorization, ISCORS');
header('Access-Control-Allow-Credentials: true');
header('Access-Control-Allow-Methods: POST, GET, PUT, OPTIONS, DELETE');
exit();
}
}
Yii::createApplication('application\core\components\Application', $config)->run();
exit;
PHP
1
https://gitee.com/potatozhi/IBOS.git
git@gitee.com:potatozhi/IBOS.git
potatozhi
IBOS
IBOS
master

搜索帮助

14c37bed 8189591 565d56ea 8189591