This commit is contained in:
尖叫 2023-12-08 16:13:36 +08:00
parent ca0394e3c2
commit 0498c3e1bb

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+']);