如何在使用pushState推送历史记录的php中获取url

时间:2016-07-20 12:02:54

标签: php pushstate

我使用historty.pushState();更改了浏览器网址

window.history.pushState('data', null, entityUrl);

然后我只想在php函数中获取该网址。我正在使用$_SERVER['REQUEST_URI']全局变量但未获取修改后的网址。

Plz帮助 提前谢谢!

1 个答案:

答案 0 :(得分:0)

window.history.pushState不会向服务器发送请求,因此您永远无法使用php获取该网址。

如果您需要它,您可以考虑向服务器发送ajax请求,只是为了告诉网址。