👾 php

브라우저 언어별로 기본 접속 페이지 설정

(。θᗨθ。) 2022. 3. 7. 00:48
<?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