我正在开发一个 CakePHP 3 网站。我想展示基于团队的内容。在每个控制器中,我想访问当前团队。
例如:
www.url.com/team1 --> Team = team1,Controller = Home,Action = Index
www.url.com/team2 --> Team = team2,Controller = Home,Action = Index
www.url.com/team3 --> Team = team3,Controller = Home,Action = Index
...
我想为所有团队使用相同的控制器,除了显示的内容是基于团队的。最好的方法是什么?路由似乎对我不起作用,我玩了一下。