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