Skip to content

Instantly share code, notes, and snippets.

@kitzberger
Created June 13, 2024 07:00
Show Gist options
  • Save kitzberger/9098b028343cf02048b74c23f3061e18 to your computer and use it in GitHub Desktop.
Save kitzberger/9098b028343cf02048b74c23f3061e18 to your computer and use it in GitHub Desktop.
Debugging TYPO3 Redirects
$GLOBALS['TYPO3_CONF_VARS']['LOG']['TYPO3']['CMS']['Redirects'] => [
   'Service' => [
       'RedirectService' => [
           'writerConfiguration' => [
               \TYPO3\CMS\Core\Log\LogLevel::DEBUG => [
                   \TYPO3\CMS\Core\Log\Writer\FileWriter::class => [
                       'logFileInfix' => 'core-redirect-service'
                   ],
               ],
           ],
       ],
   ],
];
DELETE FROM cache_pages WHERE identifier LIKE 'redirects_%';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment