2
I want to combine these:

header("Location: index.php?msg=1");
header("Location: index.php#go-hear");


To look something like this:
header("Location: index.php#go-hear?msg=1");

这可能吗?换句话说,我正在使用 _GET 并发送一个案例来过滤 switch 语句。但我也希望页面使用锚标记重定向到页面底部,而不是顶部。

4

1 回答 1

3

尝试header("Location: index.php?msg=1#go-hear");

于 2013-06-03T03:23:28.100 回答