Skip to content

Commit

Permalink
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions config/nginx/redirects.conf
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,18 @@ location ~ ^/typo3cms/ViewHelperReference(.*)$ {
return 303 /other/typo3/view-helper-reference/main/en-us$1;
}

# Redirect URLs of old ViewHelper reference to new ViewHelper reference for 12.4 and main
# (11 and below are static)
location ~ ^/other/typo3/view-helper-reference/(main|12.4)/en-us/typo3/backend/latest/(.*) {
return 303 /other/typo3/view-helper-reference/$1/en-us/Backend/$2;
}
location ~ ^/other/typo3/view-helper-reference/(main|12.4)/en-us/typo3/core/latest/(.*) {
return 303 /other/typo3/view-helper-reference/$1/en-us/Core/$2;
}
location ~ ^/other/typo3/view-helper-reference/(main|12.4)/en-us/(?:typo3fluid/fluid|typo3/fluid)/latest/(.*) {
return 303 /other/typo3/view-helper-reference/$1/en-us/Global/$2;
}

# Move exceptions to standard location
location ~ ^/typo3cms/exceptions/main/en-us/(.*)$ {
return 301 /m/typo3/reference-exceptions/main/en-us/$1;
Expand Down

0 comments on commit 42a4a4f

Please sign in to comment.