Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我从一页重定向到当前目录的 index.php 文件。我在设置 GET 参数时这样做,我想做类似以下的事情。
header("Location: ?v=30");
这将在 page2.php 上,重定向到 index.php?v=30。我知道我可以使用以下方法修复它:
header("Location: index.php?v=30");
但我想保持 URL 更简单,我希望有一种方法可以做到这一点。
试试这个:
header("Location: ./?v=30");