$router->add("/search",array(
"module" => "frontend",
"controller" => "index",
"action" => "search",
));
$router->add("/search/page/([0-9]+)",array(
"module" => "frontend",
"controller" => "index",
"action" => "search",
'page' => 1,
));
Here is route .
When search url like this
https://localhost/search?for=test <--- work
https://localhost/search?for=test/page/2 <--- not work because keyword is "test/page/2" and cann't paging .
So how to fix that problem ????