2016-09-28 79 views
0

我使用Typo3 7.6.10Typo3搜索语言变量

我有搜索索引引擎的结果。

我有两种语言,但我删除了英语。

在站点的所有链接的作品,但在搜索结果中我有额外的变量L(例如il-progetto.html?L=0) 如何从搜索结果中的链接删除变量L?

回答

0

你可以使用一个简单的realurl配置。 此后progetto.html?L=0将被替换progetto.html

'preVars' => array(
    0 => array(
     'GETvar' => 'L', 
     'valueMap' => array(
      '' => 0, // German 
      'en' => 1, // English 
     ), 
     'noMatch' => 'bypass', 
    ), 
),