<%response.sendRedirect("index.jsp");%>

解决方案 »

  1.   

    重定向:<%response.sendRedirect("index.jsp?search.jsp?title="+key+"&exactly=2&ntype=0&ndate=0"");%>
      

  2.   

    重定向:<%response.sendRedirect("index.jsptitle="+key+"&exactly=2&ntype=0&ndate=0"");%>
      

  3.   

    out.println("<meta http-equiv='refresh' content='3;URL=index.jsp'>");
      

  4.   

    对啊,最直接的就如楼上说的用html的refresh咯
      

  5.   

    <jsp:forward page="index.jsp">
    <jsp:param name="aaa" value="aaaa"/>
    <jsp:param name="bbb" value="bbbb"/>
    </jsp:forward>
    ?