如题,不在同一个module里,怎么调用其他module的动作action。或者在frontend里有一个module,在这个子module怎么调用frontend的动作呢?谢谢。
比如,在子模块里,想$this->redirect(['site/index'])
总是失败的,一般跳到子模块下的site/index
,加上frontend/site/index
却无法访问。
在 frontend/site/index
前面加上 /
即可:
Guide Handling Requests – Routing and URL Creation – Creating URLs 里面讲到:
你可以读读这节内容,了解一下 Yii 将 route 转换成 url 的过程。