Skip to content

Instantly share code, notes, and snippets.

@ogrosko
Created July 10, 2020 07:21
Show Gist options
  • Save ogrosko/581202ad1ec6cb86099ddcc0933bdb92 to your computer and use it in GitHub Desktop.
Save ogrosko/581202ad1ec6cb86099ddcc0933bdb92 to your computer and use it in GitHub Desktop.
Redirect to 404 from extbase action
# https://stackoverflow.com/questions/55007086/how-to-return-a-proper-404-error-from-extbase-with-a-error-handling-configuratio
$response = GeneralUtility::makeInstance(ErrorController::class)->pageNotFoundAction(
$GLOBALS['TYPO3_REQUEST'],
'Your error message',
['code' => PageAccessFailureReasons::PAGE_NOT_FOUND]
);
throw new ImmediateResponseException($response);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment