// +---------------------------------------------------------------------- use think\facade\Route; // 文件上传 Route::post('/file/upload', 'index/upload'); Route::post('/upload', 'index/upload'); Route::get('/actuator/health', function () { return 'hello,ThinkPHP6!'; }); Route::get('/actuator/info', function () { return 'hello,ThinkPHP6!'; });