This commit is contained in:
test_service 2023-12-08 16:15:19 +08:00
commit fc91fcc23a

View File

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