Skip to content

Commit

Permalink
Merge branch 'release/6.0.18'
Browse files Browse the repository at this point in the history
  • Loading branch information
andreaskienast committed May 3, 2024
2 parents d4511ec + bdbf450 commit 833e4c4
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 5 deletions.
9 changes: 7 additions & 2 deletions config/nginx/redirects.conf
Original file line number Diff line number Diff line change
Expand Up @@ -84,10 +84,15 @@ location = /core-contribution {

# Rewrite Fluid VH reference links to new position
location ~ ^/typo3cms/ViewHelperReference/latest(.*)$ {
return 303 /other/typo3/view-helper-reference/9.5/en-us$1;
return 303 /other/typo3/view-helper-reference/main/en-us$1;
}
location ~ ^/typo3cms/ViewHelperReference(.*)$ {
return 303 /other/typo3/view-helper-reference/9.5/en-us$1;
return 303 /other/typo3/view-helper-reference/main/en-us$1;
}

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

# Rewrite Surf documentation links to new position
Expand Down
6 changes: 3 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 833e4c4

Please sign in to comment.