Redirecting my site

Hello
My site works with 2 URLS.
First: www.mysite.com
Second: www.mysite.com/he
he = the default language

and both shows the same page, because this langauge is default.

I was thinking about redirecting www.mysite.com to www.mysite.com/he

  1. How I can do that with .htaccess?
  2. to change languages, the website url will be www.mysite.com/en
    Will step 1 will cause any problem to this translations?

unreal,

While I’d try to do that in mod_rewrite code (in .htaccess), I can’t think of how to access the browser’s default language off the top of my head. On the other hand, there are major websites which use mod_negotiation for exactly what you’re trying to do. Unfortunately, I have not studied mod_negotiation so I have to simply recommend that you go to apache.org and look at:

[indent]Content-Language:
The language(s) of the variant, as an Internet standard language tag (RFC 1766). An example is en, meaning English. If the variant contains more than one language, they are separated by a comma.[/indent]

Regards,

DK