I want to add country base redirection and add code in the .htaccess file, for example: If the user open site in UK then open this domain xyz.co.uk and other redirect to this domain xyz.com
here is my .htaccess
code:
RewriteEngine On
RewriteBase /
RewriteCond %{ENV:GEOIP_COUNTRY_CODE} ^(UK)$
RewriteRule ^(.*)$ xyz.co.uk/$1 [L]
RewriteCond %{ENV:GEOIP_COUNTRY_CODE} !^(UK)$
RewriteRule ^(.*)$ xyz.com/$1 [L]
RewriteRule ^(.*)?$ 127.0.0.1:3000/$1 [P,L]
Result: redirection working but given error too many redirects