Advertisement
Guest User

language param bypass

a guest
Feb 8th, 2011
400
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.37 KB | None | 0 0
  1. <?php
  2. $TYPO3_CONF_VARS['EXTCONF']['realurl']['_DEFAULT'] = array (
  3.     'preVars' => array (
  4.         array (
  5.             'GETvar' => 'no_cache',
  6.             'valueMap' => array (
  7.                 'no_cache' => 1
  8.             ),
  9.             'noMatch' => 'bypass'
  10.         ),
  11.         array (
  12.             'GETvar' => 'L',
  13.             'valueMap' => array (
  14.                 'us' => '3',
  15.                 'en' => '2',
  16.                 'fr' => '1'
  17.             ),
  18.             'noMatch' => 'bypass'
  19.         )
  20.     )
  21. );
  22. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement