私はyiiが初めてです。私の urlmanager は get パラメータを変更していません...ここに yiicode/protected/main.php のコードがあります
'urlManager'=>array(
'urlFormat'=>'path',
'rules'=>array(
'<controller:\w+>/<id:\d+>'=>'<controller>/view',
'<controller:\w+>/<action:\w+>/<id:\d+>'=>'<controller>/<action>',
'<controller:\w+>/<action:\w+>'=>'<controller>/<action>',
),
),
コードを見る
$this->pageTitle=Yii::app()->name;
$params=array('city'=>'london');
$route='site/index';
$ur=$this->createUrl($route,$params);
html
<a href="<?php echo $ur;"?> >Click here to check London hotels</a>
clik では /yiicode/index.php/site/index/city/london ではなく /yiicode/index.php/site/index?city=london という URL に移動します