服务器之家

服务器之家 > 正文

JAVA实现301永久重定向方法

时间:2021-04-23 11:27     来源/作者:tiger925

代码实例:

?
1
2
3
4
5
6
7
8
<%@ page language="java" contenttype="text/html; charset=utf-8" pageencoding="utf-8"%>
<%
// 转到iq.jsp
out.clearbuffer();
response.setstatus(httpservletresponse.sc_moved_permanently);
string param = request.getquerystring();
response.setheader("location","iq.jsp"+(param==null?"":("?"+param)));
%>
?
1
2
3
4
5
6
7
8
<%@ page language="java" contenttype="text/html; charset=utf-8" pageencoding="utf-8"%> 
<% 
 // 转到iq.jsp  
out.clearbuffer();  
response.setstatus(httpservletresponse.sc_moved_permanently);   
string param = request.getquerystring(); 
response.setheader("location","iq.jsp"+(param==null?"":("?"+param))); 
%>

如上这段代码,将访问download.jsp的所有访问,永久重定向到 iq.jsp
参数也同时携带过去。

如果你的重定向是跨域的,或者使用完整路径,可以使用

?
1
response.setheader("location","http://www.laozizhu.com/iq.jsp"+(param==null?"":("?"+param)));
?
1
response.setheader("location","http://www.laozizhu.com/iq.jsp"+(param==null?"":("?"+param)));

这样你就可以指定完整的转向域名了。

用常用方式实现的是302跳转:

?
1
response.sendredirect(http://www.baidu.com);
?
1
response.sendredirect("http://www.baidu.com");

原文链接:https://blog.csdn.net/tiger925/article/details/8596065

标签:

相关文章

热门资讯

2020微信伤感网名听哭了 让对方看到心疼的伤感网名大全
2020微信伤感网名听哭了 让对方看到心疼的伤感网名大全 2019-12-26
yue是什么意思 网络流行语yue了是什么梗
yue是什么意思 网络流行语yue了是什么梗 2020-10-11
背刺什么意思 网络词语背刺是什么梗
背刺什么意思 网络词语背刺是什么梗 2020-05-22
苹果12mini价格表官网报价 iPhone12mini全版本价格汇总
苹果12mini价格表官网报价 iPhone12mini全版本价格汇总 2020-11-13
Intellij idea2020永久破解,亲测可用!!!
Intellij idea2020永久破解,亲测可用!!! 2020-07-29
返回顶部