您好,登錄后才能下訂單哦!
代碼實(shí)例:
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> <% // 轉(zhuǎn)到iq.jsp out.clearBuffer(); response.setStatus(HttpServletResponse.SC_MOVED_PERMANENTLY); String param = request.getQueryString(); response.setHeader("Location","iq.jsp"+(param==null?"":("?"+param))); %>
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> <% // 轉(zhuǎn)到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
參數(shù)也同時(shí)攜帶過去。
如果你的重定向是跨域的,或者使用完整路徑,可以使用
response.setHeader("Location","http://www.laozizhu.com/iq.jsp"+(param==null?"":("?"+param)));
response.setHeader("Location","http://www.laozizhu.com/iq.jsp"+(param==null?"":("?"+param)));
這樣你就可以指定完整的轉(zhuǎn)向域名了。
用常用方式實(shí)現(xiàn)的是302跳轉(zhuǎn):
response.sendRedirect(http://www.baidu.com);
response.sendRedirect("http://www.baidu.com");
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。