We want to localize our website to several languages. The website is a collection of static HTML pages in English.
We are going to put pages for each language in an individual directory: en, de, it... This way it is more convenient to refer shared resources like CSS rules and JavaScript files. That is we will move all current English pages to "en" directory.
To preserve old links to our pages we will add a Rewrite rule to .htaccess, like this one
RewriteCond %{HTTP_HOST} ^www.yowindow.com$
RewriteRule ^(.*) http://yowindow.com/en/$1 [L,R=301]
I'm afraid this change may affect our SEO rankings.
Will it?
Pasha