想让两个地址跳转的页面一样
Posted Mxzer.Zhang
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了想让两个地址跳转的页面一样相关的知识,希望对你有一定的参考价值。
问题:项目首页登录:如想让(A)10.118.66.20:8080/ABX/ 与(B)10.118.66.20:8080/ABX/index.do,链接跳转的页面一样
web.xml中配置如下:
<welcome-file-list>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
(1)可在index.jsp页面中处理
<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
<%@ taglib uri="http://sf.com/taglib/sf-common" prefix="common"%>
<%
String path = request.getContextPath();
String basePath = request.getScheme() + "://"+ request.getServerName() + ":" + request.getServerPort()+ path + "/";
//加入下面语句
response.sendRedirect("index.do"); // 同时后台代码sessionFilter不拦截此index.do
//而不能使用:
response.sendRedirect("http://20.22.23:8080/XXX/index.do");//因为测试、生产地址不一样,配置固定的跳转地址可能会导致测试环境启动不了
%>
以上是关于想让两个地址跳转的页面一样的主要内容,如果未能解决你的问题,请参考以下文章