TP5.1 路由分组问题

浏览:1490 发布日期:2018/02/02 分类:ThinkPHP5专区 关键字: ThinkPHP5.1 路由分组
Route::group('user',[
    'add'   => ['index/user/add'],
    'edit/:id'   => ['index/user/edit'],
    'del/:id'   => ['index/user/del'],
    '/' => ['user/lst']
]);
我这样的路由分组写法难道不对吗?
为什么说,模块不存在?
最佳答案
评论( 相关
后面还有条评论,点击查看>>