WordPress redirect users from certain countries to subpage of language version

This can be done manually in .htaccess by creating rewrite rules.

So, for example…

RewriteEngine On

RewriteCond %{HTTP:Accept-Language} ^en [NC]
RewriteRule ^$ /en/ [L,R=301]

This might take some tweaking but that is the gist of it.