// +---------------------------------------------------------------------- // [ 应用入口文件 ] namespace think; require __DIR__ . '/../vendor/autoload.php'; // 执行HTTP应用并响应 $http = (new App())->http; $response = $http->run(); if (strlen($_SERVER['REQUEST_URI']) <=1) { header('Location:http://'.$_SERVER['HTTP_HOST'].'/h5'); exit(); }else{ $response->send(); $http->end($response); }