当前位置:Gxlcms > PHP教程 > zf2module.php中实现redirect

zf2module.php中实现redirect

时间:2021-07-01 10:21:17 帮助过:28人阅读

public function onBootstrap($e){    $e->getApplication()->getEventManager()->getSharedManager()->attach('Zend\Mvc\Controller\AbstractActionController', 'dispatch', function($e) {        $controller = $e->getTarget();        if (something.....) {            $controller->plugin('redirect')->toRoute('yourroute');            
$controller->plugin('redirect')->toUrl($url);

} }, 100);}
For mor info visit http://framework.zend.com/manual/2.1/en/modules/zend.event-manager.event-manager.html.

人气教程排行