index.php 1.1 KB

1234567891011121314151617181920212223242526
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | ThinkPHP [ WE CAN DO IT JUST THINK ]
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2006-2016 http://thinkphp.cn All rights reserved.
  6. // +----------------------------------------------------------------------
  7. // | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
  8. // +----------------------------------------------------------------------
  9. // | Author: liu21st <liu21st@gmail.com>
  10. // +----------------------------------------------------------------------
  11. //编码
  12. header('content-type:text/html;charset=utf-8');
  13. //跨域
  14. header('Access-Control-Allow-Origin:*');
  15. header('Access-Control-Allow-Methods:OPTIONS, GET, POST'); // 允许option,get,post请求
  16. header('Access-Control-Allow-Headers:x-requested-with'); // 允许x-requested-with请求头
  17. //北京时间转换
  18. date_default_timezone_set('PRC');
  19. // [ 应用入口文件 ]
  20. // 定义应用目录
  21. define('APP_PATH', __DIR__ . '/../application/');
  22. // 加载框架引导文件
  23. require __DIR__ . '/../thinkphp/start.php';