#The 'Accept-Language' HTACCESS File for Quebec RewriteEngine on RewriteCond %{HTTP:Accept-Language} ^fr [NC] #Redirect user to http://translate.google.com/translate?js=y&prev=_t&hl=en&ie=UTF-8&layout=1&eotf=1&u=http://www.englishsite.com/&sl=en&tl=fr #sending 301 (Moved Permanently) HTTP status code RewriteRule ^$ http://translate.google.com/translate?js=y&prev=_t&hl=en&ie=UTF-8&layout=1&eotf=1&u=http://www.englishsite.com/&sl=en&tl=fr [L,R=301] #If you decide to add other languages you modidy below, and remove pound key #RewriteCond %{HTTP:Accept-Language} ^de [NC] #RewriteRule ^$ /de/index.html [L,R=301] # #For every other language, use English RewriteRule ^$ http://www.englishsite.com [L,R=301]