我安装了TYPO3(4.5)和一个正在运行的项目。已安装并启用RealUrl扩展。一切都按预期工作。对于RealUrl扩展的正确用户,我需要在主模板中添加几行代码。
config.simulateStaticDocuments = 0
config.baseURL = http://www.example.com/
config.tx_realurl_enable = 1
现在我需要通过不同的子域(例如“www1”)访问该站点。我尝试了下面的代码,但它无法正常工作。我不确定我想出的剧本。
host = example.com
[globalString = IENV:HTTP_HOST=www.example.com]
host = www.example.com
[globalString = IENV:HTTP_HOST=www1.example.com]
host = www1.example.com
[global]
config.simulateStaticDocuments = 0
config.baseURL= http://{$host}/
config.tx_realurl_enable = 1
这足以让系统保持运行吗?
答案 0 :(得分:0)
需要在模板的常量部分注册变量。 TypoScript
不是脚本语言,而是树构造定义集。
我建议全部跳过变量,而是将以下内容附加到TypoScript
的结束。
config.baseURL = http://example.com
[globalString = IENV:HTTP_HOST=www.example.com]
config.baseURL = http://www.example.com
[globalString = IENV:HTTP_HOST=www1.example.com]
config.baseURL = http://www1.example.com
[global]
此外,您应使用config.absRefPrefix
代替config.baseURL
。