DEPRECATION WARNING

This documentation is not using the current rendering mechanism and is probably outdated. The extension maintainer should switch to the new system. Details on how to use the rendering mechanism can be found here.

Installation

  1. Write the configuration into the realurl_conf.php file:
$GLOBALS['TYPO3_CONF_VARS']['EXTCONF']['realurl_404_multilingual'] = array(
    '_DEFAULT' => array(
         'errorPage' => '404/',
         'unauthorizedPage' => '404/',
    ),
);

In this example I used the URL alias “404”.

2. Create a page in your pagetree and translate it. Set the URL alias to 404:

img-3

  1. I use the following RealURL config:
'preVars' => array(
     array(
         'GETvar' => 'L',
         'valueMap' => array(
                'de' => '0',
                'en' => '1',
                'nl' => '2',
                'cn' => '3',
         ),
         'valueDefault' => 'de',
         'noMatch' => 'bypass',
    ),
.