ichynul / la-a-duo

[laravel-admin]一个网站使用不同的前缀复用多套admin(One website uses different prefixes to reuse multiple sets of admins)
https://gitee.com/ichynul/la-a-duo
MIT License
16 stars 9 forks source link

如果访问/admin1的首页还是admin的首页怎么处理? #2

Open huaxiuyiwei opened 5 years ago

huaxiuyiwei commented 5 years ago

需要修改一下app/Admin1/extroutes.php里的 $router->get('', 'App\Admin\Controllers\HomeController@index')->middleware(['web', 'lad.prefix:admin1', 'lad.admin']); 改成 $router->get('', 'App\Admin1\Controllers\HomeController@index')->middleware(['web', 'lad.prefix:admin1', 'lad.admin']);

ichynul commented 5 years ago

修改配置:'extend_routes' => false,,重新生成路由看看。 extend_routes 为ture 会继承原来的控制器命空间,为false 则使用自己新的。