index 파일에 적용
<?
$userAgent = $_SERVER["HTTP_ACCEPT_LANGUAGE"];
$language_bun = substr($userAgent, 0, 2);
if ($language_bun == "ko") {
Header('Location:/ko/index.php');
} else {
Header('Location:/en/index.php');
}
?>
728x90
index 파일에 적용
<?
$userAgent = $_SERVER["HTTP_ACCEPT_LANGUAGE"];
$language_bun = substr($userAgent, 0, 2);
if ($language_bun == "ko") {
Header('Location:/ko/index.php');
} else {
Header('Location:/en/index.php');
}
?>