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.

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

报告相同问题?

悬赏问题

  • ¥15 素材场景中光线烘焙后灯光失效
  • ¥15 请教一下各位,为什么我这个没有实现模拟点击
  • ¥15 执行 virtuoso 命令后,界面没有,cadence 启动不起来
  • ¥50 comfyui下连接animatediff节点生成视频质量非常差的原因
  • ¥20 有关区间dp的问题求解
  • ¥15 多电路系统共用电源的串扰问题
  • ¥15 slam rangenet++配置
  • ¥15 有没有研究水声通信方面的帮我改俩matlab代码
  • ¥15 ubuntu子系统密码忘记
  • ¥15 保护模式-系统加载-段寄存器