Url Rewrite On Extend Params

my current link is


 /post/view.html?id=1 

created by


 $this->widget('zii.widgets.CListView'

my config is


array(

				'<controller:\w+>'=>'<controller>',

				'<controller:\w+>/<action:\w+>'=>'<controller>/<action>',

				'<controller:\w+>/<action:\w+>/id/<id:\d+>'=>'<controller>/<action>/id/<id>',

			);



my question is how could i get the url like


/post/view/id/1.html 

by using


$this->widget('zii.widgets.CListView'

?

many thanks