framework
framework copied to clipboard
6.0.3版本路由解析错误
访问路径 /merchantasdf
路由
Route::group('merchant/', function () {
Route::miss(function () {
//进到这里来了
});
})
Route::miss(function () {
//没有进到这里
});
这不太正常呀, 讲道理第一个应该只匹配/merchant/asdf,/merchant/*
@liu21st