htaccess通过浏览器语言重定向(在Apache服务器上)

时间:2019-07-16 17:46:30

标签: .htaccess redirect browser

我需要将与IT不同的所有浏览器语言重定向到子文件夹EN中的另一个index.html。 尝试过此方法,但不起作用。

RewriteEngine on

RewriteCond %{HTTP:Accept-language} ^it [NC]
RewriteRule ^$ https://www.example.com/ [L,R=301]

RewriteCond %{HTTP:Accept-language} !^(it).* [NC]
RewriteRule ^$ https://www.example.com/en/ [L,R=301]

0 个答案:

没有答案