使用request.getHeader("Referer");得到请求的来源

简介:

假如有两个页面  test1.jsp 和test2.jsp

一 test1.jsp中有如下链接
<a href="test2.jsp">test2</a>


二 test2.jsp中
<%
String url = request.getHeader("Referer");
System.out.println(url);
%>

当我们访问 ../test1.jsp?id=2 时进入test1页面, 点击tes2链接.

在控制台将输出../test.jsp?id=2 也就是说在tes2.jsp页面获取了,test1的url包括参数.

目录
相关文章
|
2月前
|
JSON 缓存 JavaScript
【HTTP】请求“报头”(Host、Content-Length/Content-Type、User-Agent(简称 UA))
【HTTP】请求“报头”(Host、Content-Length/Content-Type、User-Agent(简称 UA))
113 1
|
5月前
The requested URL could not be retrieved
The requested URL could not be retrieved
65 1
|
5月前
|
API Java
解决HTTP 400 Bad Request错误的方法
解决HTTP 400 Bad Request错误的方法
1085 0
|
7月前
|
API
webclient在delete请求时携带request body
webclient在delete请求时携带request body
116 0
|
7月前
给requests请求添加cookie
给requests请求添加cookie
77 0
|
JSON 数据格式
axios.post请求出错:Request header field content-type is not allowed by Access-Control-Allow-Headers in……
axios.post请求出错:Request header field content-type is not allowed by Access-Control-Allow-Headers in……
|
JavaScript
HTTP header location 重定向 URL
HTTP header location 重定向 URL
|
JSON Java 数据格式
Postman发送json数据出现HttpMessageNotReadableException: Required request body is missing的几种解决方法以及页面显示400解决
Postman发送json数据出现HttpMessageNotReadableException: Required request body is missing的几种解决方法以及页面显示400解决
545 0
|
前端开发 JavaScript
ajax请求的重定向处理--Request header field x-requested-with is not allowed by Access-Control-Allow-Header
ajax请求的重定向处理--Request header field x-requested-with is not allowed by Access-Control-Allow-Header
490 0
https网站访问http出现block:mixed-content
https网站访问http出现block:mixed-content
766 0
https网站访问http出现block:mixed-content