I'm trying to add optional named parameters to my routes, and I read on Stack overflow you can do it like this:
Router::connect('/add_product/:productid/*',
array('controller' => 'baskets', 'action' => 'add_product'),
array('pass' => array('productid', 'amount')));
Which I tried by calling this url:
/add_product/testid/amount:5
Which does not work.
Is there something I'm missing?