Languages redirect

Hello,

is possible to redirect website in browser languages?

Hi,

I am not sure what do you mean, can you give me an example?
Thanks

yes,

example if i have my browser in italian i go in itlaian site in other case in english site

hello
have you news for this

Hey,

You can achieve this with JavaScript.
You can create a JS file which is being triggered onReady, and when user opens a website, it will detect a language and it will redirect him to italian version.

let userLang = navigator.language || navigator.userLanguage; 
if ( userLang == "it-IT") {
  window.location.href = '/it';
}