admin.php 381 B

123456789101112131415161718
  1. <?php
  2. namespace think;
  3. // 检测程序安装
  4. if(!is_file(__DIR__ . '/mdata/install.lock')){
  5. header('Location: ../install/index.php');
  6. exit();
  7. }
  8. // 定义应用目录
  9. // 加载基础文件
  10. require __DIR__ . '/thinkphp/base.php';
  11. // 支持事先使用静态方法设置Request对象和Config对象
  12. // 执行应用并响应
  13. Container::get('app')->bind('admin')->run()->send();