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.
例如,我有一个ajax从页面http://www.abc.com/xyz/1到功能控制的请求ajax。
ajax
http://www.abc.com/xyz/1
除了通过参数发送之外,还有什么方法可以让我知道在函数中我可以获取http://www.abc.com/xyz/1并意识到 ajax 请求来自这里?
如果服务器想知道来自哪个页面,或者服务器的位置,那么你可以在最后使用这个,如果 PHP:
die($_SERVER["HTTP_HOST"] . $_SERVER["HTTP_REFERER"]);
您可以使用以下 php 代码获取请求 url:
$request_url=( $_SERVER["HTTP_REFERER"]);