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

link|improve this question
Can you please clarify which URL format the user enters, and which you wnt to see in the end? – Pekka Dec 8 '11 at 16:38
Hello! Need to "site.com => site.com/?lang=ua" - only on the main page. Several times did RewriteRule and Redirect. Displays error - "Internal Server Error" and "Wrong redirect to a page". Still does not work(( How to make a redirect? Waiting for an answer. – Areku_UA Dec 8 '11 at 17:15
feedback

1 Answer

up vote 4 down vote accepted

You can get rid of the "^" and "$" in Redirect, it doesn't take a regular expression to match. This will do:

Redirect 301 / http://site.com/?lang=ua

EDIT: Now that I'm thinking about it, this will loop indefinitely because the query string isn't being checked. What you need is this:

RewriteCond %{QUERY_STRING} !(^|&)lang=ua($|&)
RewriteRule ^$ http://site.com/?lang=ua [L,R]
link|improve this answer
Hello! It works! That's right! Thank you very much! – Areku_UA Dec 8 '11 at 20:01
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.