I have the following two routes in my app for paging:
Router::connect('/news', array(
'controller' => 'posts', 'action' => 'index','page' => 1
));
Router::connect('/news/page/:page*',
array('controller' => 'posts', 'action' => 'index'),
array('named' => array('page' => '[\d]+'))
);
The idea being that page 1 is /news and page 2 is /news/page/2
It just shows page one though... Any ideas what the issue is? Thanks