I'm rebuilding a site in CakePHP 2.0 and need to route some old URLs to new ones. For example, this:
http://www.example.com/widget/helpbox/location/mackay-qld
Will route to this:
http://www.example.com/widgets/answer/location_id:10542
In order to do this, I have the following route:
Router::connect(
'/widget/helpbox/location/mackay-qld',
array(
'controller' => 'widgets',
'action' => 'answer',
'location_id' => 10542
)
);
When I debug $this->request->params, I get this:
Array
(
[plugin] =>
[controller] => widgets
[action] => answer
[named] => Array
(
)
[pass] => Array
(
)
[location_id] => 10542
[isAjax] =>
)
But I expect this:
Array
(
[plugin] =>
[controller] => widgets
[action] => answer
[named] => Array
(
[location_id] => 10542
)
[pass] => Array
(
)
[isAjax] =>
)
I've also tried calling
Router::connectNamed(array('location_id'));
...but to no avail. location_id is still passed in the same way - not as a named parameter.
Does anyone know the correct syntax?
