【发布时间】:2017-03-25 21:16:29
【问题描述】:
$GLOBALS['TSFE']->pageNotFoundAndExit('');
目前正在使用,但我想重定向到页面 ID。
使用命令redirectToUri,我找不到解决方案,或者没有工作。
代码:
/**
* initialize action show
* @return void
*/
public function initializeShowAction() {
if ($this->request->hasArgument('xxx')) {
if ( $xxx=$this->xxxRepository->findByUid(
intval($this->request->getArgument('xxx'))
) ) {
$this->request->setArgument('xxx',$xxx);
return;
}
}
$GLOBALS['TSFE']->pageNotFoundAndExit('');
}
【问题讨论】:
标签: redirect typo3 extbase typo3-7.6.x