Routing based on standard PHP query string
问题 As you know, Zend Framework (v1.10) uses routing based on slash separated params, ex. [server]/controllerName/actionName/param1/value1/param2/value2/ Queston is: How to force Zend Framework, to retrive action and controller name using standard PHP query string, in this case: [server]?controller=controllerName&action=actionName¶m1=value1¶m2=value2 I've tried: protected function _initRequest() { // Ensure the front controller is initialized $this->bootstrap('FrontController'); //