1 Star 0 Fork 928

user_974218 / IBOS

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
index.php 1.64 KB
一键复制 编辑 原始数据 按行查看 历史
seekArt 提交于 2015-09-18 15:24 . v3.3
<?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__ ) );
$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 );
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;
1
https://gitee.com/yoyoaaaa/IBOS.git
git@gitee.com:yoyoaaaa/IBOS.git
yoyoaaaa
IBOS
IBOS
master

搜索帮助

53164aa7 5694891 3bd8fe86 5694891