Reputation: 189
I'm having problems figuring out how to set a different start page for the english version of my website. Is there a way to let users who choose to see the site in english get redirected to another page the the default language start page?
Upvotes: 0
Views: 825
Reputation: 4128
Try the below typoscript condition:
[globalVar = TSFE:id = 1] && [globalVar = GP:L = 1]
page.config >
page.config.additionalHeaders = Location: http://www.typo3.org
[global]
where Id should be your home page id and L equal to L value of English. Location equal to required page link.
Upvotes: 1