热搜:NVER node 开发 php

zf2 module.php中实现redirect

2024-08-13 21:50:01
zf2 module.php中实现redirect

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.