Created
June 22, 2016 16:57
-
-
Save stafast/958bd403ed980866fe1735eab7d0a764 to your computer and use it in GitHub Desktop.
TYPO3 realUrl Extension Extbase cHash controller action
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$TYPO3_CONF_VARS['EXTCONF']['realurl']['_DEFAULT'] = array( | |
'postVarSets' => array( | |
'_DEFAULT' => array( | |
'controller' => array( | |
array( | |
'GETvar' => 'tx_EXT_pi1[action]', | |
'noMatch' => 'bypass' | |
), | |
array( | |
'GETvar' => 'tx_EXT_pi1[controller]', | |
'noMatch' => 'bypass' | |
) | |
), | |
), | |
), | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment