dongwen2162 2014-09-06 11: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 00: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.

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

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部