環(huán)境php8.0 在windows下跟linux中都是這樣
在route.php
Route::any('/test', function ($request) {
return response('test');
});
Route::get('/', [\app\controller\Index::class,'index']);
Route::fallback(function () {
return json(['code' => 404, 'msg' => '404 not found']);
});
Route::disableDefaultRoute();
控制臺路由報錯
Route set to / is not callable
Route set to / is not callable
Route set to / is not callable
Route set to / is not callable
Route set to / is not callable
關(guān)于webman 1.4,1.4會覆蓋 support/helper.php,升級前請先備份。建議先將webman 1.4試水一些非關(guān)鍵項目。重要項目等1-2個月后再上1.4。
是不是因為這個?猜的!