Skip to content

Instantly share code, notes, and snippets.

@marklindhout
Created September 26, 2012 10:53
Show Gist options
  • Save marklindhout/3787314 to your computer and use it in GitHub Desktop.
Save marklindhout/3787314 to your computer and use it in GitHub Desktop.
Migrate a WordPress installation to a different URL with this MySQL
UPDATE wp_options SET option_value = replace(option_value, 'http://old.url', 'http://new.url') WHERE option_name = 'home' OR option_name = 'siteurl';
UPDATE wp_posts SET guid = replace(guid, 'http://old.url','http://new.url');
UPDATE wp_posts SET post_content = replace(post_content, 'http://old.url', 'http://new.url');
UPDATE wp_postmeta SET meta_value = replace(meta_value,'http://old.url','http://new.url');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment