这是我的 Zend Framework 目录结构(只包括你需要的):
-Controllers
-HomeController.php
-IndexController.php
-Views
-scripts
-home
-index.phtml
-index
-index.phtml
在IndexController
我想自动将它们重定向到主视图。
我如何实现这一目标?
这是我到目前为止所尝试的:
header('/application/views/home');
我想完全重定向到不同的视图和控制器。在同一个控制器中没有不同的操作。