环境php8.0 在windows下跟linux中都是这样 在route.php Route::any('/test', function ($request) { return response('test'); }); Route::get('/', [\app\controller\Index::class,'index']); Route::fallback(function () { return json...