UrlManager in conjuction with query strings

Hello,

I would like to know if possible to get urlManager and query strings working together in my application running on a Nginx server

My config is like this:




'urlManager'=>array(

		    'urlFormat'=>'path',

			'appendParams'=>false,

		    'showScriptName' => false,

			//'urlSuffix' => ".html",

		    'rules'=>array(

		        // Other controllers

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

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

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

		            

		    ),

		),



When I call to www.mysite/myController/action?id=1&type=book I do not see variables into $_GET

Thank you!