In my index view file i have:
$this->widget('zii.widgets.CListView', array(
'dataProvider'=>$dataProvider,
'itemView'=>'_view',
'ajaxUpdate'=>false,
));
A have a lot of records so the pagination appears. The problem is when i go to second page /actor/index?Actor_page=2. I need a way to format this url into a more friendly one, for example: /actor/page/2. How can i achieve this?