I have to adjust my website a bit. I try to get rid of _get parameters for my languages and decided to create some subdirs. Now I try to redirect the correct language to the right directory.
RewriteCond %{HTTP:Accept-Language} ^.*es.*$ [NC]
RewriteCond %{REQUEST_URI} ^(/|/index\.php)$ [NC]
RewriteRule ^(.*)$ [
abc.org...] [R=301,NC,L]
RewriteCond %{HTTP:Accept-Language} ^.*en.*$ [NC]
RewriteCond %{REQUEST_URI} ^(/|/index\.php)$ [NC]
RewriteRule ^(.*)$ [
abc.org...] [R=301,NC,L]
RewriteCond %{REQUEST_URI} ^(/|/index\.php)$ [NC]
RewriteRule ^(.*)$ [
abc.org...] [R=301,NC,L]
Anyone got a clue.