In the file:
/library/application/router.php
(make sure you backup router.php in case theres a problem)
if you change the function route(&$request) to have:
Code: Select all
function route(&$request) {
if ($this->path) {
$path = explode('&', $this->path);
for($i=0;$i < sizeof($path);$i++)
{
$route = explode('=',$path[$i]);
$request->set($route[0], $route[1]);
}
}
}
Admin >> Configuration >> URL Alias
example:
URL Query: controller=information&information_id=1
URL Alias: about
it works perfectly!
I tested it with a couple other pages, like categories and subcategories and it works great..
Can others confirm that it works for everything?