Skip to content

Commit

Permalink
Redirect from 1.0 to main in how to document (#206)
Browse files Browse the repository at this point in the history
The sphinx based documentation rendering has been turned off
  • Loading branch information
linawolf authored Nov 18, 2024
1 parent 4d9da1c commit 5033747
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 @@ -105,6 +105,11 @@ location ~ ^/typo3cms/ViewHelperReference(.*)$ {
return 303 /other/typo3/view-helper-reference/main/en-us$1;
}

# Redirect from 1.0 to main in how to document
location ~ ^/m/typo3/docs-how-to-document/1.0/en-us/(.*) {
return 303 /m/typo3/docs-how-to-document/main/en-us/$1;
}

# Redirect from old rest reference to new
location ~ ^/m/typo3/docs-how-to-document/main/en-us/WritingReST/Reference/(.*) {
return 303 /m/typo3/docs-how-to-document/main/en-us/Reference/ReStructuredText/$1;
Expand Down

0 comments on commit 5033747

Please sign in to comment.