是否可以在重定向之前设置一些查询?
$this->redirector->gotoRoute(
array('slug' => $theme['slug']),
'theme'
);
我想重定向哪个是:
/theme/theme-name-slug?foo=bar
我正在尝试重定向到原始网址,但问号已编码且网址不正确。我认为Zend框架和Zend框架2具有类似的重定向:
$this->redirect()->toRoute(
'categorie/default',
array(
'action' => 'category'
),
array( 'query' => array(
'foo' => 'bar'
))
);
任何想法? 提前谢谢。