我正在尝试从路由 /admin 重定向到 /admin/post/list。
我设置了从 /admin 到 IndexController::indexAction() 的路由
然后我做了这样的控制器
class IndexController extends AbstractActionController
{
public function indexAction()
{
$this->redirect()->toRoute('postList');
}
}
它运行良好,但 ZF2 需要制作模板 index/index.phtml。
在没有空模板的情况下,如何更好地进行重定向?