Skip to content

Commit

Permalink
Move HMENU special properties into data processor
Browse files Browse the repository at this point in the history
  • Loading branch information
linawolf authored Dec 22, 2024
1 parent ddc52da commit 71fe67b
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion config/nginx/redirects.conf
Original file line number Diff line number Diff line change
Expand Up @@ -106,10 +106,15 @@ location ~ ^/m/typo3/tutorial-typoscript-in-45-minutes/(main|13.4|12.4)/en-us/(.
}

# Move TypoScript Syntax into TypoScript reference
location ~ ^/m/typo3/reference-coreapi/(main|13.4|12.4)/en-us/Configuration/TypoScript/Syntax/(.*)/Index.html$ {
location ~ ^/m/typo3/reference-coreapi/(main|13.4|12.4)/en-us/ContentObjects/Hmenu/(.*)$ {
return 303 /m/typo3/reference-typoscript/$1/en-us/Syntax/$2/Index.html;
}

# Move HMENU special properties into data processor
location ~ ^/m/typo3/reference-coreapi/(main|13.4)/en-us/Configuration/TypoScript/Syntax/(?!Tmenu)(.*)$ {
return 303 /m/typo3/reference-typoscript/$1/en-us/DataProcessing/MenuProcessor/$2;
}

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

0 comments on commit 71fe67b

Please sign in to comment.