I wanted to give a special URL to the page (id=57) where the SINGLE view of tt_news is, so I used this to configure RealURL:
'fixedPostVars' => array(
'57' => 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' => '-',
),
),
),
),
),
The problem is that the redirect in 404 wont work:
http://www.mypage.com/blog/artikel/asdasd ---> works fine. Goes to page 404.
http://www.mypage.com/blog/artikel/whatever/whateveragain ---> works fine. Goes to page 404.
http://www.mypage.com/blog/artikel/whatever ---> will NOT redirect to 404. I get "No news_id was given."