.htaccess
Redirect a specific domain (if there is more) to a specific lang segment RewriteCond %{HTTP_HOST} domain.com RewriteCond %{REQUEST_URI} ^/$ RewriteRule .* /lang/ [L,R=301] Redirect all non-www to www.domain.cm RewriteCond %{HTTP_HOST} ^domain\.com$ [NC] RewriteRule ^(.*)$ http://www.domain.com/$1 [R=301,L]