[TYPO3-german] tx_news und REALURL

Torsten torstentrautmann at gmx.de
Thu Mar 28 11:23:11 CET 2013


Hallo,

ich benutze die News Ext von Georg Ringer.
Leider bekomme ich die URL nicht so hin, wie ich sie gerne hätte
www.domain/artikel/category/das-ist-die-seite.html

Kann mir hierbei jemand helfen?!

realurl_conf.php

<?php
 
if (!defined('TYPO3_MODE'))
    die('Access denied.');
 
$GLOBALS= array(
    '_DEFAULT' => array(
        'init' => array(
            'enableCHashCache' => '1',
            'appendMissingSlash' => 'ifNotFile',
            'enableUrlDecodeCache' => '1',
            'enableUrlEncodeCache' => '1',
        ),
        'redirects' => array(
        ),
        'preVars' => array(
            '0' => array(
                'GETvar' => 'no_cache',
                'valueMap' => array(
                    'nc' => '1',
                ),
                'noMatch' => 'bypass'
            ),
            '1' => array(
                'GETvar' => 'L',
                'valueMap' => array(
                    'de' => '0',
                    'en' => '1',
                    'nl' => '2',
                ),
                'noMatch' => 'bypass',
            ),
            '2' => array(
                'GETvar' => 'lang',
                'valueMap' => array(
                    'de' => 'de',
                ),
                'noMatch' => 'bypass',
            ),
        ),
        'pagePath' => array(
            'type' => 'user',
            'userFunc' => 'EXT:realurl/class.tx_realurl_advanced.php:&tx_realurl_advanced->main',
            'spaceCharacter' => '-',
            'languageGetVar' => 'L',
            'expireDays' => '7',
            'rootpage_id' => '1',
        ),
        'fixedPostVars' => array(
        ),
        'postVarSets' => array(
            '_DEFAULT' => array(
                'news' => array(
        array(
                'GETvar' => 'tx_news_pi1[action]',
        ),
        array(
                'GETvar' => 'tx_news_pi1[controller]',
        ),
        array(
                'GETvar' => 'tx_news_pi1[news]',
                'lookUpTable' => array(
                        'table' => 'tx_news_domain_model_news',
                        'id_field' => 'uid',
                        'alias_field' => 'title',
                        'addWhereClause' => ' AND NOT deleted',
                        'useUniqueCache' => 1,
                        'useUniqueCache_conf' => array(
                                'strtolower' => 1,
                                'spaceCharacter' => '-',
                        ),
                        'languageGetVar' => 'L',
                        'languageExceptionUids' => '',
                        'languageField' => 'sys_language_uid',
                        'transOrigPointerField' => 'l10n_parent',
                        'autoUpdate' => 1,
                        'expireDays' => 180,
								),
						),
				),
            ),
        ),
        'fileName' => array(
            'defaultToHTMLsuffixOnPrev' => true,
            'index' => array(
                'rss.xml' => array(
                    'keyValues' => array(
                        'type' => '100',
                    ),
                ),
                'rss091.xml' => array(
                    'keyValues' => array(
                        'type' => '101',
                    ),
                ),
                'rdf.xml' => array(
                    'keyValues' => array(
                        'type' => '102',
                    ),
                ),
                'atom.xml' => array(
                    'keyValues' => array(
                        'type' => '103',
                    ),
                ),
                'sitemap.xml' => array(
                    'keyValues' => array(
                        'type' => '776',
                    ),
                ),
            ),
        ),
    ),
);
 
?>


More information about the TYPO3-german mailing list