Skip to content

Instantly share code, notes, and snippets.

@bpardo
Last active December 20, 2017 21:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bpardo/43a9bfe1d018a15a2049a6415a73ebe8 to your computer and use it in GitHub Desktop.
Save bpardo/43a9bfe1d018a15a2049a6415a73ebe8 to your computer and use it in GitHub Desktop.
Deplacer un blog Wordpress
# Changer l'URL du site
UPDATE wp_options
SET option_value = replace(option_value, 'http://www.ancien-site.com', 'http://www.nouveau-site.com')
WHERE option_name = 'home'
OR option_name = 'siteurl';
# Changer l'URL des GUID
UPDATE wp_posts
SET guid = REPLACE (guid, 'http://www.ancien-site.fr', 'http://www.nouveau-site.fr');
# Changer l'URL des médias dans les articles et pages
UPDATE wp_posts
SET post_content = REPLACE (post_content, 'http://www.ancien-site.fr', 'http://www.nouveau-site.fr');
# Changer l'URL des données meta
UPDATE wp_postmeta
SET meta_value = REPLACE (meta_value, 'http://www.ancien-site.com','http://www.nouveau-site.com');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment