I came up with a workaround for this:
$clean_url = str_replace('index.php','',current_url()); $current_url = 'http://'.$_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI']; if($clean_url!==$current_url) { redirect($clean_url,'location',301); }
This is not with .htaccess, but this in your controller may solve the problem. (At least he worked in PlugB )
Gabriel Bianconi May 21 '10 at 19:58 2010-05-21 19:58
source share