SpringBoot+Thymeleaf项目是一个简单的单体项目,只有一个页面。
重定向的是前后分离,前端用的vue。
浏览器看到重定向后 https成了http,F12控制台看到是 301 Moved Permanently
单体项目最开始写法: response.sendRedirect(url);
试了两种方法均无效
1、modelAndView.setView(new RedirectView(url,true,false));
2、在html页面 location.href = url;
期间在nginx上也做过些操作,都没啥用
return 301 https://$host$request_uri;
proxy_redirect http:// https://;
最后 解决办法
1、由于单体项目只有一个页面,在<head>中添加
2、在跳转的项目的 index.html页面 也加上
<meta http-equiv="Content-Security-Policy" content="upgrade-insecure-requests">
单体项目不能直接 response.sendRedirect(url),要进到html页面处理
万事大吉,重定向后依然是 https