OfficeModule というモジュールが 1 つあります。OfficeModule には、BranchController と BranchTypeController の 2 つのコントローラーがあります。また、BranchModel と BranchTypeModel の 2 つのモデルがあります。また、2つのビューファイル。ファイルパスは次のようになります。
protected\modules\office\controllers\branchController.php
protected\modules\office\controllers\branchtypeController.php
protected\modules\office\models\Branch.php
protected\modules\office\models\BranchType.php
私は 1 つのモジュール ファイルを持っています: protected\modules\office\OfficeModule.php
URL projectname.test.com/office/branch から呼び出すと、projectname.test.com/office/branchtype のようにリダイレクトしたいと思います。今、私は OfficeModule.php に redirect() を書いています
public function beforeControllerAction($controller, $action){
$controller->redirect(array('../branchtype'));
}
しかし、それは機能せず、リダイレクトできません。誰でも私を助けてください。どうもありがとう!