I have a website powered by WordPress MU. The front page of the site is translated in several languages. How do I rewrite the following URLs?

http://www.example.com/?lang=en
http://www.example.com/?lang=fr

to:

http://www.example.com/en/
http://www.example.com/fr/

This is my current .htaccess,

# BEGIN WordPress
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]

# Uploaded files
RewriteRule ^files/(.+) wp-includes/ms-files.php?file=$1 [L]

RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^ - [L]
RewriteRule . index.php [L]
# END WordPress
link|improve this question

feedback

3 Answers

up vote 3 down vote accepted

I have not tested so I am not 100 % sure if it works but that should give you some ideas.

I advice you to take a look at the documentation of mod-rewrite.

# BEGIN WordPress
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]

# uploaded files
RewriteRule ^files/(.+) wp-includes/ms-files.php?file=$1 [L]

#languages
RewriteRule ^/(en|fr)/(.*)$ /$2?lang=$1

RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^ - [L]
RewriteRule . index.php [L]
# END WordPress
link|improve this answer
I'v got 500 Internal Server Error error :( – Vasil Dakov Dec 15 '10 at 9:51
1  
That's because it says ReriteRule instead of RewriteRule. Also, these rules will rewrite all http://example.com/en/ URLs to http://example.com/?lang=en. – Linus Kleen Dec 15 '10 at 9:53
@goreSplatter: thanks for cathing the typo. – RageZ Dec 15 '10 at 9:56
Thanks! It's work, but I have been redirected to 404.php instead to index.php. How I can fix that? – Vasil Dakov Dec 15 '10 at 10:25
@Vasil: I am not a WP expert but you might have to add index.php to your rule maybe – RageZ Dec 16 '10 at 0:57
feedback

This will redirect and preserve the original query string:

RewriteCond %{QUERY_STRING} (.+)
RewriteRule ^([a-z]{2}) /?lang=$1&%1 [L]

RewriteRule ^([a-z]{2}) /?lang=$1 [L]
link|improve this answer
it's work, but for some reason i get redirect to 404.php instead to index.php :( – Vasil Dakov Dec 15 '10 at 10:19
feedback
RewriteEngine On
RewriteBase /

RewriteRule ^en  /?lang=en
RewriteRule ^fr  /?lang=fr
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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