Skip to content

Commit

Permalink
[TASK] Recover exception redirects
Browse files Browse the repository at this point in the history
The redirects for the old exception pages have been falsely removed and
are recovered now.
  • Loading branch information
andreaskienast committed May 27, 2024
1 parent 7c466c0 commit aa0620f
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions config/nginx/redirects.conf
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,11 @@ location ~ ^/typo3cms/ViewHelperReference(.*)$ {
return 303 /other/typo3/view-helper-reference/main/en-us$1;
}

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

# Rewrite Surf documentation links to new position
location ~ ^/surf/latest(.*)$ {
return 303 /other/typo3/surf/2.0/en-us$1;
Expand Down

0 comments on commit aa0620f

Please sign in to comment.