路由到模块中的动作

Route to action in module

我有 moule admin 和 controller:
backend/modules/admin/controllers/DefaultController.php

 public function actionIndex()
    {
        return $this->render('index');
    }

 public function actionTest()
    {
        echo "test";
    }

动作索引调用成功: : http://backend/admin

动作测试return404

您需要以 app/module/controller/action 的身份访问操作,这样才能使 url 像 backend/admin/default/test 因为你的 controller 名字是 default 而不是 test。更改它,它将起作用。