全部,Zend Framework - 重定向到IndexController在不同的模塊
我在Zend的mvc框架中有以下項目設置。在訪問應用程序時,我希望用戶重定向到「移動」模塊,而不是轉到「默認」模塊中的IndexController。我怎麼做?
-billingsystem
-application
-configs
application.ini
-layouts
-scripts
layout.phtml
-modules
-default
-controllers
IndexController.php
-models
-views
Bootstrap.php
-mobile
-controllers
IndexController.php
-models
-views
Bootstrap.php
Bootstrap.php
-documentation
-include
-library
-logs
-public
-design
-css
-images
-js
index.php
.htaccess
我的index.php文件具有下面的代碼:
require_once 'Zend/Application.php';
require_once 'Zend/Loader.php';
$application = new Zend_Application(
APPLICATION_ENV,
APPLICATION_PATH . '/configs/application.ini'
);
$application->bootstrap()->run();
是否有沒有辦法像index.php全局做這個,而不是改變每個控制器? – Jake 2011-05-12 04:23:58
在'Zend_Controller_Plugin'中執行它,以便在調度程序啓動之前完成 – 2011-05-12 08:45:22