You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
488 B
39 lines
488 B
:80 {
|
|
root /srv/www
|
|
|
|
locale en-US zh-CN zh-TW pt-BR nl-NL {
|
|
detect header
|
|
}
|
|
|
|
redir 301 {
|
|
if {path} match ^/$
|
|
/ /{>Detected-Locale}/
|
|
}
|
|
|
|
rewrite /en-US/ {
|
|
regexp (.*)
|
|
to /en-us/{1}
|
|
}
|
|
|
|
rewrite /zh-CN/ {
|
|
regexp (.*)
|
|
to /zh-cn/{1}
|
|
}
|
|
|
|
rewrite /zh-TW/ {
|
|
regexp (.*)
|
|
to /zh-tw/{1}
|
|
}
|
|
|
|
rewrite /pt-BR/ {
|
|
regexp (.*)
|
|
to /pt-br/{1}
|
|
}
|
|
|
|
rewrite /nl-NL/ {
|
|
regexp (.*)
|
|
to /nl-nl/{1}
|
|
}
|
|
|
|
header / Vary "Accept-Language"
|
|
}
|
|
|