? の後にパラメータを取得しようとしています。Zend_Paginator に追加する必要があります。例: http://www.example.com/test/show?name=xxx&age=20&sex=m 検索結果のページネーターの構築。そのための解決策はありますか?
$router = new Zend_Controller_Router_Route_Regex(
'test/show\?(.*)',
array(
'controller' => 'test',
'action' => 'show',
'module' => 'user'
),
array(
1 => 'q'
),
'test/show%s'
);
$router_prev->addRoute('view',$router);