index.php 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | ThinkPHP [ WE CAN DO IT JUST THINK ]
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2006-2019 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. namespace think;
  13. if (version_compare(PHP_VERSION, '7.1.0', '<'))
  14. die('require PHP > 7.1.0 !');
  15. // 检测PHP环境 允许前端跨域请求
  16. header("Access-Control-Allow-Origin:*");
  17. // 响应类型
  18. header('Access-Control-Allow-Methods:GET, POST, PUT, DELETE');
  19. // 响应头设置
  20. header('Access-Control-Allow-Headers:x-requested-with, content-type');
  21. header('Access-Control-Allow-Headers:Origin,X-Requested-With, Content-Type, Accept, x-access-sign, x-access-time, uid,Access-Control-Allow-Credentials,Access-Token,access-token,token,access-control-allow-origin,Token,Access-Control-Allow-Origin,Content-Type,Referer,User-Agent');
  22. if (! file_exists('./install.lock')) {
  23. header('location: ./install.php');
  24. exit();
  25. }
  26. $query_string = substr($_SERVER["QUERY_STRING"], -3);
  27. $array = ['jpg', 'png', 'css', '.js', 'txt', 'doc', 'ocx', 'peg'];
  28. if(in_array($query_string, $array))
  29. {
  30. exit();
  31. }
  32. require __DIR__ . '/vendor/autoload.php';
  33. // 执行HTTP应用并响应
  34. $http = (new App())->http;
  35. $response = $http->run();
  36. $response->send();
  37. $http->end($response);