springboot实现301跳转
warning:
这篇文章距离上次修改已过406天,其中的内容可能已经有所变动。
@GetMapping(value = {"", "/"})
public void toIndex(HttpServletRequest request, HttpServletResponse response, Model model) throws IOException {
response.setStatus(HttpServletResponse.SC_MOVED_PERMANENTLY);
response.setHeader("Location", Constants.url + "/en");
// response.sendRedirect("/en");
}