猿问

页面未在 php 中重定向到 self

我在 php codeigniter 中有一个网站,当用户单击按钮时,产品会被添加到购物车中,并且应该显示当前页面本身。我的网址如下所示:

https://localhost/booktheparty/index.php?/hyderabad/corporate-party-planner/view-corporate-entertainment-activities/ENT105012/50/12

我已经使用下面的代码重定向到自己的页面

header("Location: " . "http://" . $_SERVER['HTTP_HOST'] . $location);

但它不起作用,当单击按钮时,页面被重定向到 xampp 仪表板。可能是什么问题呢?


函数式编程
浏览 114回答 1
1回答

宝慕林4294392

您可以使用 javascript 重新加载页面location.reload();或 PHPheader("Refresh:0");而不是传递 URL。或带有 URI 的 PHPheader("Refresh:0; url=" . $location)
随时随地看视频慕课网APP
我要回答