// +---------------------------------------------------------------------- // [ 应用入口文件 ] namespace think; //安装向导 if(is_dir('install')){ if (!file_exists('install/install.lock')) { header("Location:/install"); exit; } } require __DIR__ . '/vendor/autoload.php'; // 执行HTTP应用并响应 $http = (new App())->http; $response = $http->run(); $response->send(); $http->end($response);