how to create international country language specific url how to create international country language specific url codeigniter codeigniter

how to create international country language specific url


In your default controller or in a hook (pre_controller), you need to have this

$_language =substr($_SERVER["HTTP_ACCEPT_LANGUAGE"],0,2); redirect($_language, 'refresh');

You can add another validation like ip address to know if is a english from usa, uk, etc, but if some english speaker travel to another country, the validation will be fail.