tags: php redirect title: Simple PHP Redirect Example ```php function redirect($newpath) { header('Location: '.$newpath, true, 303); exit(); } ```