Skip to content

Instantly share code, notes, and snippets.

@stafast
Created June 22, 2016 16:57
Show Gist options
  • Save stafast/958bd403ed980866fe1735eab7d0a764 to your computer and use it in GitHub Desktop.
Save stafast/958bd403ed980866fe1735eab7d0a764 to your computer and use it in GitHub Desktop.
TYPO3 realUrl Extension Extbase cHash controller action
<?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