From 5e345ca0743c060a29aec2fca3096ff392740cb5 Mon Sep 17 00:00:00 2001 From: itn Date: Tue, 13 Jun 2023 12:29:32 +0900 Subject: [PATCH] =?UTF-8?q?httpsRedirect=20=EC=A3=BC=EC=84=9D=ED=95=B4?= =?UTF-8?q?=EC=A0=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/main/webapp/WEB-INF/jsp/web/main/mainPage.jsp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/webapp/WEB-INF/jsp/web/main/mainPage.jsp b/src/main/webapp/WEB-INF/jsp/web/main/mainPage.jsp index 4e0cc1a1..0845599c 100644 --- a/src/main/webapp/WEB-INF/jsp/web/main/mainPage.jsp +++ b/src/main/webapp/WEB-INF/jsp/web/main/mainPage.jsp @@ -14,7 +14,7 @@ $(document).ready(function() { // http => https 로 이동 - //httpsRedirect(); + httpsRedirect(); // 슬라이드 이미지 변경 //setMainSlideImgChange(); @@ -339,7 +339,7 @@ function httpsRedirect() { //실서버일 경우 //https가 없는경우 if(url.indexOf('https://') == -1 && url.indexOf('dev.munjaon.co.kr') == -1 && url.indexOf('cs.munjaon.co.kr') == -1) { - //document.location.href = "https://www.munjaon.co.kr/web/main/mainPage.do"; + document.location.href = "https://www.munjaon.co.kr/web/main/mainPage.do"; } } }