ERVER['HTTPS'] = 'off'; // +---------------------------------------------------------------------- // | ThinkPHP [ WE CAN DO IT JUST THINK ] // +---------------------------------------------------------------------- // | Copyright (c) 2006-2018 http://thinkphp.cn All rights reserved. // +---------------------------------------------------------------------- // | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 ) // +---------------------------------------------------------------------- // | Author: liu21st // +---------------------------------------------------------------------- // [ 应用入口文件 ] namespace think; // 加载基础文件 require __DIR__ . '/../thinkphp/base.php'; //加载自定义常量 require __DIR__ . '/../extend/const.php'; //header("Access-Control-Allow-Origin: *"); //header('Access-Control-Allow-Credentials: true'); //header("Access-Control-Allow-Methods:GET, POST, PUT,DELETE,OPTIONS"); // 允许跨域请求的方式 //header("Access-Control-Allow-Headers: X-Token, token, Authorization, x-uid,x-token-check, x-requested-with, Origin, Host, Referer,User-Agent,Accept-Encoding,Accept-Language, X-Requested-With, Content-Type, Accept, Connection, User-Agent, Cookie"); //if (request()->isOptions()) { // exit(); //} header("Access-Control-Allow-Origin:*"); header('Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS'); header("Access-Control-Allow-Headers:X-Token, token, Authorization, x-uid,x-token-check, x-requested-with, Origin, Host, Referer,User-Agent,Accept-Encoding,Accept-Language, X-Requested-With, Content-Type, Accept, Connection, User-Agent, Cookie"); //if (request()->isOptions()) { // exit(); //} // 支持事先使用静态方法设置Request对象和Config对象 // 执行应用并响应 Container::get('app')->run()->send();