Skip to content

Instantly share code, notes, and snippets.

@varnav
Last active July 25, 2021 17:25
Show Gist options
  • Star 9 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save varnav/782d5aeb42c6ffa77678025767013c95 to your computer and use it in GitHub Desktop.
Save varnav/782d5aeb42c6ffa77678025767013c95 to your computer and use it in GitHub Desktop.
Nginx can redirect to language subsite based on browser language
map $http_accept_language $index_redirect_uri {
default "/en/";
"~(^|,)en.+,ru" "/en/";
"~(^|,)ru.+,en" "/ru/";
"~(^|,)en" "/en/";
"~(^|,)ru" "/ru/";
}
location = / {
return 302 $index_redirect_uri;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment