TYPO3 tx_news:如何从RealURL路径中删除“news”前缀

时间:2014-08-11 08:21:46

标签: typo3 realurl tx-news

我有问题。有人知道如何从网址中删除新闻前缀吗?

就像这样

http://www.example.com/**news**/detail/title-of-news/

我希望像这样

http://www.example.com/detail/title-of-news/

或用不同的"文章"替换新闻词。例如。

1 个答案:

答案 0 :(得分:1)

  1. 将单个视图插件放在单独的article页面
  2. 使用fixedPostVars(来自RealURL文档)缩短网址read this answer以查看tt_news的示例(抱歉,我现在没有任何针对News + RU的示例,但调整此问题没有问题):
  3. 样品:

    'fixedPostVars' => array(
        '123' =>array(
            array(
                'GETvar' => 'tx_ttnews[tt_news]',
                'lookUpTable' => array(
                    'table' => 'tt_news',
                    'id_field' => 'uid',
                    'alias_field' => 'title',
                    'addWhereClause' => ' AND NOT deleted',
                    'useUniqueCache' => 1,
                    'useUniqueCache_conf' => array(
                        'strtolower' => 1,
                        'spaceCharacter' => '-',
                    ),
                ),
            ),
        ),
    ),