Skip to content

Instantly share code, notes, and snippets.

@forsvunnet
Created March 2, 2016 09:52
Show Gist options
  • Save forsvunnet/5f9e471c70359862ec43 to your computer and use it in GitHub Desktop.
Save forsvunnet/5f9e471c70359862ec43 to your computer and use it in GitHub Desktop.
app / code / local / Mage / Core / Controller / Varien / Front.php
<?php
$file_content = file_get_contents( MAGENTO_ROOT. '/app/code/core/Mage/Core/Controller/Varien/Front.php' );
$look_for = '->setRedirect($baseUrl, $redirectCode)';
$use = '->setRedirect( $baseUrl . substr( $requestUri, 1 ), $redirectCode )';
$file_content = str_replace( '<?php', '', $file_content );
$file_content = str_replace( $look_for, $use, $file_content );
eval( $file_content );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment