// +---------------------------------------------------------------------- use think\facade\Route; Route::get('think', function () { return 'hello,ThinkPHP6!'; }); Route::get('hello/:name', 'index/hello'); Route::rule('h5/:any', function () { return view(app()->getRootPath() . 'public/h5/index.html'); })->pattern(['any' => '\w+']);