you can do something like this:

PHP Code:
<?php
if (isset($_GET['keyword']) {
     
header('Location: mynewpage.php?keyword='.$_GET['keyword']);
}