I am writing a small script in which it redirects to country specific landing pages(example: if you come from Germany you will be re-directed to xyz.com/de/
) this redirection happens using index.php which connects to web service returns the country the user is accessing the website from then I redirect the user using 301 to a the new page xyz.com/de/
I have two questions
1- Can the same functionality integrated with mod_rewrite
, if so what is the advantage in terms of performance and SEO quality?
2- Can the mod_rewrite save the query string including GCLID
on the redirects (as I am concatenating the $_SERVER
to php redirection