htaccess子域名基于浏览器语言的外部URL

时间:2014-09-15 21:03:42

标签: .htaccess redirect subdomain http-accept-language

我遇到问题:我想根据客户端浏览器语言将htaccess子域名重定向到两个不同的URL。现在我尝试了这段代码 - 但它不会工作。 htaccess在正确的位置。它根据第一条规则重定向,并忽略接受语言条件。

#Redirect all german clients to the german version of the document
RewriteCond %{HTTP_HOST} ^rules\.deine-craftbruehe\.de$ [NC]
RewriteCond %{HTTP:Accept-Language} ^de [NC]
RewriteRule ^(.*) https://docs.google.com/document/d/1glXaQEGx_Qi0wwWBvFvvggesrJElYlRrD2JTA7OktmI/edit?usp=sharing/$1 [L,R]

#Redirect all other languages to the english version of the document
RewriteCond %{HTTP_HOST} ^rules\.deine-craftbruehe\.de$ [NC]
RewriteRule ^(.*) https://docs.google.com/document/d/15ojVd67GDHw5ny4nQ04AdTDnMDGx2Lr6w5Vi6tJ-HbM/edit?usp=sharing/$1 [L,R]

如果你们中的某个人可以帮我解决这个问题,真的很棒!非常感谢。

0 个答案:

没有答案