Index: typo3_src/typo3/sysext/redirects/Classes/Service/RedirectService.php IDEA additional info: Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP <+>UTF-8 =================================================================== --- typo3_src/typo3/sysext/redirects/Classes/Service/RedirectService.php (date 1565892919602) +++ typo3_src/typo3/sysext/redirects/Classes/Service/RedirectService.php (date 1565892919602) @@ -186,6 +186,13 @@ } return $url; } + /* submit query parameters from typolink */ + if (!empty($linkParameterParts['additionalParams'])) { + $params = GeneralUtility::explodeUrl2Array($linkParameterParts['additionalParams']); + foreach($params as $key=>$value) { + $queryParams[$key] = $value; + } + } // If it's a record or page, then boot up TSFE and use typolink return $this->getUriFromCustomLinkDetails($matchedRedirect, $site, $linkDetails, $queryParams); }