Project

General

Profile

Bug #87070

Updated by Daniel Goerz over 5 years ago

In the Redirect Middleware the TSFE is partially bootstrapped and @$GLOBALS['TYPO3_CONF_VARS']['FE']['pageUnavailable_handling']@ is set to @false@ for this. 

 This leads to the following behavior: 

 # Create a redirect for any source, e.g. /foo/bar 
 # Visit /foo/bar/?type=12345678 (note: the typeNum must not be configured) 

 My first expectation would be that the type is ignored and the redirect is executed. 
 My second expectation would be that my configured pageUnavailable_handling kicks in for the undefined PageType. 

 But Instead none of the expectations are met, instead the default TYPO3 error (depending 8depending on your displayErrors setting) setting is displayed displayed)

Back