index.jsp 706 B

1234567891011121314151617
  1. <%@ page contentType="text/html;charset=GBK"%>
  2. <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
  3. <%@ taglib uri="http://java.sun.com/jsp/jstl/functions" prefix="fn"%>
  4. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  5. <html>
  6. <head>
  7. <title>加载中。。</title>
  8. </head>
  9. <body style="position: absolute; height: 100%;">
  10. <!-- 如果以手机域名访问,刚跳转到wap手机登录页面 -->
  11. <c:set var="requestUrl" value="${pageContext.request.requestURL}"></c:set>
  12. <c:if test="${fn:containsIgnoreCase(requestUrl, 'm.zjm.cn')}">
  13. <c:redirect url="mobile/index.jsp" />
  14. </c:if>
  15. <jsp:forward page="reLogin.do?type=0" />
  16. </body>
  17. </html>