このことについて説明してもらえますか?CUrlManager で「パス」形式を使用する場合、標準パスは機能しますか?
たとえば、構成ファイルで CUrlManager コンポーネントを有効にしました。
'urlManager'=>array(
'urlFormat'=>'path',
'showScriptName'=>false,
'rules'=>array(
'<controller:\w+>/<id:\d+>'=>'<controller>/view',
'<controller:\w+>/<action:\w+>/<id:\d+>'=>'<controller>/<action>',
'<controller:\w+>/<action:\w+>'=>'<controller>/<action>',
),
これで、次のようなパスを使用できます: http://example.com/controller/action?param1=value1¶m2=value2 ...
動作しますか?: http://example.com/index.php?r=controller/action¶m1=value1¶m2=value2 ...
一部の外部プログラムとの下位互換性のために、古いパスを使用する必要があります。