一、修改HTTP header的Location属性进行重定向 spa
//返回301状态码htm
response.setStatus(HttpServletResponse.SC_MOVED_PERMANENTLY);get
response.setHeader("Location","http://market.21-sun.com/404.htm");io
//返回404状态码request
response.setStatus(HttpServletResponse.SC_NOT_FOUND);返回404状态码重定向
request.getRequestDispatcher("/404.htm").forward(request,response);co