如何在扩展程序中配置tx_news中日期菜单的目标页面。
目前我的真实情况如下:
链接以以下形式输出:
MyDomain.tdl / nwes.html? Tx_news_pi1%5BoverwriteDemand%5D%5Byear%5D = 2017& tx_news_pi1%5BoverwriteDemand%5D%5Bmonth%5D = 03& cHash = b671ba816868bf63e419eeacacc74175
目标是:
Mydomain.tdl / date-filter / year / month.html
tx_news配置的其余部分似乎正在运行。
感谢您的帮助。
答案 0 :(得分:0)
将此添加到您的realurl_conf.php
,然后删除TYPO3中的网址数据:
'postVarSets' => array(
'_DEFAULT' => array(
'controller' => array(
'date-filter' => array(
array(
'GETvar' => 'tx_news_pi1[overwriteDemand][year]',
),
array(
'GETvar' => 'tx_news_pi1[overwriteDemand][month]',
),
),
)
)
)