我的路由文件 /webman/config/route.php
我的控制器 /webman/app/user/controller/IndexController.php
然后我訪問url :
http://127.0.0.1:8787/user/index/create/testname
但是我訪問不帶路由參數(shù)的URL:
總結:webman不識別路由參數(shù),直接報404?。?!
配置這個吧,怎么樣都是統(tǒng)一返回格式
Route::fallback(function () {
throw new \Tinywan\ExceptionHandler\Exception\RouteNotFoundException();
});