index.php 1.0 KB

12345678910111213141516171819202122232425
  1. <?php
  2. header('Access-Control-Allow-Origin:*');
  3. header('Access-Control-Allow-Methods:*');
  4. header('Access-Control-Allow-Headers:x-requested-with,content-type');
  5. // +----------------------------------------------------------------------
  6. // | ThinkPHP [ WE CAN DO IT JUST THINK ]
  7. // +----------------------------------------------------------------------
  8. // | Copyright (c) 2006-2016 http://thinkphp.cn All rights reserved.
  9. // +----------------------------------------------------------------------
  10. // | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
  11. // +----------------------------------------------------------------------
  12. // | Author: liu21st <liu21st@gmail.com>
  13. // +----------------------------------------------------------------------
  14. // [ 应用入口文件 ]
  15. // 定义应用目录
  16. define('APP_PATH', __DIR__ . '/../application/');
  17. // 判断是否安装
  18. if (!is_file(APP_PATH . 'admin/command/Install/install.lock')) {
  19. header("location:./install.php");
  20. exit;
  21. }
  22. // 加载框架引导文件
  23. require __DIR__ . '/../thinkphp/start.php';