👾 php

php 브라우저 언어별 접속 페이지 변경 (다국어)

(。θᗨθ。) 2024. 5. 7. 10:54

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