(function() {
// 1. 브라우저 언어 확인 (예: 'ko-KR', 'en-US' 등)
const userLang = navigator.language || navigator.userLanguage;
const currentPath = window.location.pathname;
// 2. 이미 특정 언어 페이지에 있다면 무한 루프 방지를 위해 중단
if (currentPath !== '/' && currentPath !== '') return;
// 3. 언어별 페이지 이동 로직
if (userLang.startsWith('en')) {
// 브라우저가 영어라면 영어 메인 페이지로 이동
window.location.href = '/en';
} else {
// 그 외(한국어 등)라면 한국어 메인 페이지로 이동
window.location.href = '/ko';
}
})();