是否可以从控制器插件中将用户重定向到新的 URL,而不必向控制器返回响应对象?
具体来说,我想将用户重定向到当前 URL 的安全版本。所以在 ZF2 我有这个:
$url = 'https://'.$this->getURL();
$response = $this->getController()->redirect()->toUrl( $url );
return $response;
然而,在 Zend Framework 1 中,我能够做到:
$redirector = Zend_Controller_Action_HelperBroker::getStaticHelper('redirector');
$url = 'https://'.$this->getURL();
$redirector->gotoUrlAndExit($url);
是否可以在 ZF2 中基本上“重定向然后退出”?