如何在 TypoScript 条件下使用新的 Symfony 表达式语法检查协议
How to check the protocol with the new Symfony Expression syntax in a TypoScript condition
我需要在 TypoScript 条件下使用 Symfony Expression Langange 检查协议。
旧语法是
[globalString = IENV:TYPO3_SSL=1]
但是在文档中,没有提到TYPO3_SSL
。
https://docs.typo3.org/m/typo3/reference-typoscript/master/en-us/Conditions/
从 TYPO3 ver. 开始:9.4
下一个,可以用作替代品:
[request.getNormalizedParams().isHttps() == true]
这里有更多关于迁移 TypoScript 条件的参考资料:
我需要在 TypoScript 条件下使用 Symfony Expression Langange 检查协议。
旧语法是
[globalString = IENV:TYPO3_SSL=1]
但是在文档中,没有提到TYPO3_SSL
。
https://docs.typo3.org/m/typo3/reference-typoscript/master/en-us/Conditions/
从 TYPO3 ver. 开始:9.4
下一个,可以用作替代品:
[request.getNormalizedParams().isHttps() == true]
这里有更多关于迁移 TypoScript 条件的参考资料: