// +---------------------------------------------------------------------- use think\facade\Route; Route::get('think', function () { return 'hello,ThinkPHP6!'; }); Route::get('hello/:name', 'index/hello'); Route::get('getReport', 'index/getReport'); Route::get('getOnlyReport', 'index/getOnlyReport'); Route::get('getOnlyPdf', 'index/getOnlyPdf'); Route::get('hello', 'index/hello');