Вопрос

I m new to cakephp, want to know how can i change url like this

C:/xyz.com/countries/view/5 to C:/xyz.com/countries/ABC

where 5 is id of ABC country

Thanks in Advance

Это было полезно?

Решение

Router::connect('/countries/:country_id', array('controller' => 'countries', 'action' => 'view'), array('pass' => array('country_id')));

In the controller:

public function view() {
   $countryId =  $this->request->params['country_id'];
}
Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top