21289 Posts in 5733 Topics by 2602 members
|
Page:
1
|
Go to End | |
| Author | Topic: | 395 Views |
-
.htaccess redirect depending on language

22 August 2012 at 8:47am
Hi
I'm trying to adapt the .htaccess so that german is sent to a specific URL and all other clients are sent to another URL.
Right now I'm trying something like this:
RewriteEngine On
RewriteBase /RewriteCond %{HTTP:Accept-Language} ^de [NC]
RewriteRule ^$ /home [L,R=301]
RewriteRule ^$ /home-en [L,R=301]Unfortunatly it's not working. Would anyone know why?
Thanks for a feedback.
-
Re: .htaccess redirect depending on language

26 August 2012 at 10:20pm
I would just put PHP code in the INIT function of your home page
public function init() {
parent::init();if ($_SERVER["HTTP_ACCEPT_LANGUAGE"] == "en") {
// redirect or set a session var, which tells the page to loads in different versions of text
}
}
| 395 Views | ||
|
Page:
1
|
Go to Top |


