index.php 972B

12345678910111213141516171819202122
  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. // ini_set('session.cookie_domain', ".domain.com");//跨域访问Session
  12. // [ 应用入口文件 ]
  13. // 应用目录
  14. define('APP_PATH', __DIR__.'/application/');
  15. // 定义配置文件目录和应用目录同级
  16. define('CONF_PATH', __DIR__.'/config/');
  17. // 定义缓存目录
  18. define('RUNTIME_PATH', __DIR__.'/runtime/');
  19. // 加载框架引导文件
  20. require './thinkphp/start.php';