我想知道在 Yii 中拥有嵌套 URL 结构的最佳方法是什么我有一个结构如下的网站
/index
/dashboard (dashboard controller, index action)
/dashboard/profile (profile controller, index action)
/dashboard/profile/view (profile controller, view action)
/dashboard/profile/update (profile controller, update action)
/dashboard/stats (stats controller, index action)
等等...
基本上 /dashboard 有它自己的控制器,默认情况下将使用 Index 操作但是我想在 /dashboard 下嵌套其他控制器,例如 /dashboard/profile 但是,/profile 控制器不是一个操作,它应该是一个控制器转身可以有自己的行动。例如 /dashboard/profile/view
这是可行的吗?如果是,实现这种结构的最佳方式是什么?