php页面如何跳转

2025-02-06 07:08:42
推荐回答(1个)
回答1:

header("Location: http://www.example.com/"); /* Redirect browser */

/* Make sure that code below does not get executed when we redirect. */
exit;
?>