<?php
//Korean ( ko ), English ( en ), Chinese ( zh ), Japanese ( ja)
$acceptLang = substr($_SERVER['HTTP_ACCEPT_LANGUAGE'],0,2);
if($acceptLang === "ko"){
Header('Location:/ko/index.php');
} else {
Header('Location:/en/index.php');
}
?>
728x90