Hi Guys,
I am using Phalcon Paginator. Instead of
/products/list/?page=1
i would like to have
/products/list/1
How do i do this using routing? This is what i come of with, but does not work.
$router->add('/products/list/:params', array(
'controller' => 'products',
'action' => 'list',
"params" => $_GET['page']
));
Advice appreciated!