I noticed language-based redirects aren’t working of the browser has two languages configured.
I have a redirect rule in my _redirects
file as follows:
/ /jp 302 Language=ja
I have set my browser to Japanese with English (US) as my secondary language. My browser (Chrome) sends the following request header.
accept-language: ja,en-US;q=0.9,en;q=0.8
This does not redirect the site.
If I change my browser to Japanese only it sends the following header:
accept-language: ja
When I retry it redirects fine. I have no specific rules set up for English, which is why I’m surprised the redirect doesn’t work. I’m pretty sure this used to work. Can someone clarify?