如何在 Plugin.php 中重定向

How to redirect in Plugin.php

我需要快速提示: 如何从 plugins/MyPlugin/lib/MyPlugin/Plugin.php 重定向到插件的控制器 ?

我知道 header("Location:http://example.com"); 可能有用,但 mayby 更好吗?

提前致谢!

你可以使用这个:

$redirector = new Zend_Controller_Action_Helper_Redirector();
$redirector->gotoSimpleAndExit('action','controller','default');