Index: arms/js/common.js =================================================================== diff -u -r117d0e7102e53d048410d94b26da290e981ddc8f -rdd092c897c4dc2494b6a75b9ee8cf8b91d7038ab --- arms/js/common.js (.../common.js) (revision 117d0e7102e53d048410d94b26da290e981ddc8f) +++ arms/js/common.js (.../common.js) (revision dd092c897c4dc2494b6a75b9ee8cf8b91d7038ab) @@ -110,18 +110,31 @@ console.log("class가 존재함. 로그인이 안됬다는 의미."); - const indexPHPTG = new tourguide.TourGuideClient({ // 상세 정보 투어 가이드 - exitOnClickOutside: true, - autoScroll: false, - hidePrev: true, - hideNext: true, - showStepDots: false, - showStepProgress: false, - steps: TgGroup.indexPHPStep() - }); + // 현재 페이지의 URL 가져오기 + var href = window.location.href; - indexPHPTG.start(); + // 현재 페이지의 origin 가져오기 + var origin = window.location.origin; + // origin을 제외한 URL 경로 얻기 + var path = href.replace(origin, ''); + + console.log(path); + + if (path == "/php/gnuboard5/" || path == "/php/gnuboard5/index.php") { + const indexPHPTG = new tourguide.TourGuideClient({ // 상세 정보 투어 가이드 + exitOnClickOutside: true, + autoScroll: false, + hidePrev: true, + hideNext: true, + showStepDots: false, + showStepProgress: false, + steps: TgGroup.indexPHPStep() + }); + + indexPHPTG.start(); + } + } }