I created a typeNum 777 with a RSS Feed. What I want to achieve now is that the feed can be reached via http://www.domain.com/feed.rss instead of http://www.domain.com/index.php?id=33&type=777
I have realurl installed but I don't seem to be able to configure it in this way. I have been trying for hours without progress. I tried the following in my realurl_conf.php:
$GLOBALS['TYPO3_CONF_VARS']['EXTCONF']['realurl'] = array(
'_DEFAULT' => array(
'fileName' => array(
'defaultToHTMLsuffixOnPrev' => 0,
'acceptHTMLsuffix' => 1,
'index' => array(
'page.html' => array(
'keyValues' => array(
'type' => 1,
)
),
'feed.rss' => array(
'keyValues' => array(
'id' => 33,
'type' => 777
)
),
'_DEFAULT' => array(
'keyValues' => array()
),
),
),
)
but when I use this an try domain.com/feed.rss I get redirected to the start page of my typo3 project. What am I missing?