I have. Htaccess, which displays only the main page and language ?lang=ua style.
I want to redirect (using code 301) asks site.com to site.com/?lang=ua with RewriteEngine.
site.com => site.com/?lang=ua
I tried this:
Redirect 301 ^$ http://site.com/?lang=ua
or
RewriteRule ^(.*)$ http://site.com/?lang=ua [L]
Displays error "Wrong redirect to a page"
But still not working! How can I do this?
Thanks in advance