[TYPO3-german] Lösung: tt_news + RSS + RealUrl
Peter Harlander
office at harlander-itm.com
Tue Dec 27 11:59:49 CET 2005
Ich wollte meine News auch als rss feed anzeigen, aber nicht in der form
www.mydomain.com/index.php?id=4&type=100 sondern
www.mydomain.com/rss20.xml
www.mydomain.com/rdf.xml
www.mydomain.com/atom03.xml
Habe ewig gesucht, aber nur posts ohne Antwort gefunden. Daher nun ein
Lösungsansatz von mir:
Einfach ext_localconf.php wie folgt ändern:
statt:
'fileName' => array (
'defaultToHTMLsuffixOnPrev' => 1,
'index' => array(
'page.html' => array(
'keyValues' => array (
'type' => 1,
),
),
),
),
einfach:
'fileName' => array (
'defaultToHTMLsuffixOnPrev' => 1,
'index' => array(
'page.html' => array(
'keyValues' => array (
'type' => 1,
),
),
'rss20.xml' => array(
'keyValues' => array(
'type' => 100,
),
),
'rdf.xml' => array(
'keyValues' => array(
'type' => 101,
),
),
'atom03.xml' => array(
'keyValues' => array(
'type' => 102,
),
),
),
),
Bitte verwenden & wenn möglich, Verbesserungsmöglichkeiten /
Schwachstellen mitteilen.
Danke & Viel Freude
LG Peter
More information about the TYPO3-german
mailing list