Hello
Tell me how configure URL for pagination using zii.widgets.Clistview
Now URLs are domain/site/index/Posts_page/2
Need to get a domain/page/2
<?php
$this->widget('zii.widgets.CListView', array(
'ajaxUpdate'=>false,
'dataProvider'=>$dataProvider,
'itemView'=>'post',
));
?>
How do I do?