// +---------------------------------------------------------------------- // [ 应用入口文件 ] namespace think; define('DS', DIRECTORY_SEPARATOR); require __DIR__ . '/../vendor/autoload.php'; // 显式指定应用根目录,确保 .env 正确加载(避免 getDefaultRootPath 返回上级目录) $rootPath = dirname(__DIR__) . DIRECTORY_SEPARATOR; $http = (new App($rootPath))->http; $response = $http->run(); $response->send(); $http->end($response);