美文网首页
JSP页面重定向

JSP页面重定向

作者: 133sheiya | 来源:发表于2017-05-09 11:30 被阅读23次

    <%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
    <%@ page import="java.io.,java.util." %>
    <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
    <title>JSP页面重定向</title>
    </head>
    <body>
    <h1>页面重定向</h1>
    <%

    String site = new String("http://www.baidu.com");
    response.setStatus(response.SC_MOVED_TEMPORARILY);
    response.setHeader("Location",site);

    %>
    </body>
    </html>

    相关文章

      网友评论

          本文标题:JSP页面重定向

          本文链接:https://www.haomeiwen.com/subject/yipbtxtx.html