That's it, done! Welcome on Etan Online.Fr !
As I had announced Friday, the change in area is now effective. And the best part is that it works!
In short, after a full backup of the blog, I spent the field etanonline.fr in primary domain and redirected the old domain to the latter.
Then I updated the database to convert all the old URL.
Then I updated the sitemap , and I restarted the indexing of the area on Google. The new URL should soon replace the old.
Finally, I made some adjustments in terms of history plugins that everything is working again.
I would also remind you to update your links, bookmarks and favorites using the following addresses:
Now, I look forward that Google re-index all the pages of the blog with the correct address so that it can re-evaluate the PageRank.
Finally, those interested in how to migrate a Wordpress blog from one domain to another, you can read the articles of Korben and 2803 . I put all the same SQL queries to perform:
UPDATE wp_options SET option_value = replace(option_value, 'http://www.ancien-domaine.com', 'http://www.nouveau-domaine.com') WHERE option_name = 'home' OR option_name = 'siteurl';
UPDATE wp_posts SET guid = replace(guid, 'http://www.ancien-domaine.com','http://www.nouveau-domaine.com')
UPDATE wp_posts SET guid = replace(guid, 'http://www.ancien-domaine.com','http://www.nouveau-domaine.com') ;
UPDATE wp_posts SET post_content = replace(post_content, 'http://www.ancien-domaine.com', 'http://www.nouveau-domaine.com');
UPDATE wp_postmeta SET meta_value = replace(meta_value, 'http://www.ancien-domaine.com', 'http://www.nouveau-domaine.com');
UPDATE wp_comments SET comment_author_url = replace(comment_author_url, 'http://www.ancien-domaine.com','http://www.nouveau-domaine.com');
UPDATE wp_comments SET comment_author_email = replace(comment_author_email, '@ancien-domaine.com','@nouveau-domaine.com');
Voila!