通過在需要跳轉的頁面中添加以下代碼,即可解決http跳轉到https速度慢的問題。
<script type="text/javascript">var url = window.location.href;if (url.indexOf("https") < 0) {url = url.replace("http:", "https:");window.location.replace(url);}</script>