Home
TinyUrl to this page: http://twitcode.org/Bb
Code:
Label: use browser-lang within mod_rewrite
RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_URI} !^/(de|en)/.*$ RewriteCond %{HTTP:Accept-Language} ^de.*$ [NC] RewriteRule ^(.*)?$ http://www.example.com/de/$1 [L,R=301] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_URI} !^/(de|en)/.*$ RewriteCond %{HTTP:Accept-Language} ^en.*$ [NC] RewriteRule ^(.*)?$ http://www.example.com/en/$1 [L,R=301]
Comment:
Small snippet how to make use of the HTTP:Accept-Language with mod_rewrite

