dongwen2162 2014-09-06 19:39
浏览 30
已采纳

Zend Framework 2使用站点URL在onBootStrap中重定向

I'm trying to redirect in Module.php in Zend Framework 2.

I got the code online and it is working but not as expected.

I'm trying to redirect to a different module.

Here is the code.

public function onBootStrap($e){
    $container = new Container();
    if(!$container || !$container->admin_id){
        //  Assuming your login route has a name 'login', this will do the assembly
        // (you can also use directly $url=/path/to/login)
        $url = $e->getRouter()->assemble(array('action' => 'login'), array('name' => 'admin'));
        $response=$e->getResponse();
        $response->getHeaders()->addHeaderLine('Location', $url);
        $response->setStatusCode(302);
        $response->sendHeaders();
        // When an MvcEvent Listener returns a Response object,
        // It automatically short-circuit the Application running
        // -> true only for Route Event propagation see Zend\Mvc\Application::run

        // To avoid additional processing
        // we can attach a listener for Event Route with a high priority
        $stopCallBack = function($event) use ($response){
            $event->stopPropagation();
            return $response;
        };
        //Attach the "break" as a listener with a high priority
        $e->getApplication()->getEventManager()->attach(MvcEvent::EVENT_ROUTE, $stopCallBack,-10000);
        return $response;
    }
 }

It works and redirects me to http://localhost/admin/login But my actual site url is http://localhost/MantissaAdmin/public/ So it should be redirecting me to http://localhost/MantissaAdmin/public/admin/login

How can I redirect to http://localhost/MantissaAdmin/public/admin/login ?

  • 写回答

1条回答 默认 最新

  • dp152153 2014-09-08 08:16
    关注

    I would suggest to grab the ZF2 redirect plugin from the controller and use this for redirecting to another route. You can check an example here in another question on StackOverflow.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?