URL 重定向期间请求的 IP 地址是什么?
What will be the IP address of a request during a URL redirect?
我的网站上有一个页面有一个按钮,单击该按钮可以进入同一网站上的另一个页面。此页面加载重定向到外部 URL.
发生重定向时,外部站点将看到的 IP 地址是什么?是我网站的IP,还是用户的IP?
外部网站将记录客户端(又名用户)的 IP 地址。但是,由于您是从您的网站重定向的,他们也会收到 Referer
header header;这将指向您网站的地址。
The Referer
request header contains the address of the previous web
page from which a link to the currently requested page was followed.
The Referer
header allows servers to identify where people are
visiting them from and may use that data for analytics, logging, or
optimized caching, for example.
我的网站上有一个页面有一个按钮,单击该按钮可以进入同一网站上的另一个页面。此页面加载重定向到外部 URL.
发生重定向时,外部站点将看到的 IP 地址是什么?是我网站的IP,还是用户的IP?
外部网站将记录客户端(又名用户)的 IP 地址。但是,由于您是从您的网站重定向的,他们也会收到 Referer
header header;这将指向您网站的地址。
The
Referer
request header contains the address of the previous web page from which a link to the currently requested page was followed. TheReferer
header allows servers to identify where people are visiting them from and may use that data for analytics, logging, or optimized caching, for example.