在PHP中,如果redirect参数中带有id,可以通过以下几种方式解决:
$id = $_GET['id'];
header("Location: http://example.com/page.php?id=$id");
exit;
$id = $_GET['id'];
$id = urlencode($id);
header("Location: http://example.com/page.php?id=$id");
exit;
$id = $_GET['id'];
session_start();
$_SESSION['id'] = $id;
header("Location: http://example.com/page.php");
exit;
在页面重定向后,可以通过$_SESSION[‘id’]获取之前存储的id参数。