I have a problem with my YII urlManager. urlManager Rules are not applying when urlFormat is 'get'. Here my urlManager code
'urlManager' => array(
'urlFormat' => 'get',
'showScriptName' => true,
//'appendParams'=>false,
'hostInfo'=>'My Base Url',
'secureHostInfo'=>'My Secured Base Url',
'ssl'=>false,
'class'=>'myUrlManager',
'rules' => array(
array(
'class' => 'application.components.MyBaseUrlManager',
'connectionID' => 'db',
),
'<controller:\w+>/<action:\w+>/*'=>'<controller>/<action>',
),
),
Here myUrlManager is extend class from CUrlManager and MyBaseUrlManager is extended class from CBaseUrlRule.
Is it possible to access the rules of urlManager when the urlformat is 'get'?
Thanks in Advance