I have a problem with the pagination in my search page. When a user search something I have a url like domain.com/search/?s=keyword but paginator gives me links lik
domain.com/search/?s=keyword
I know this is old but found a simple solution that works for me. Add following in view file -
$paginator->options(array('url' => array_merge($this->passedArgs, array('?' => ltrim(strstr($_SERVER['QUERY_STRING'], '&'), '&')))));
Found it here