Обязательно тестируйте!
Можно попробовать так, редирект на последнюю страницу пагинации:
if($product_total && ($page > ceil($product_total / $limit))) {
$this->response->redirect($this->url->link('product/category', 'path=' . $category_id . '&page=' . ceil($product_total / $limit) . $url, true), 301);
}
или так, по идее должно на первую
if($product_total && ($page > ceil($product_total / $limit))) {
$this->response->redirect($this->url->link('product/category', 'path=' . $category_id, true), 301);
}