Skip to content

Instantly share code, notes, and snippets.

@kvalexandr
Created January 13, 2016 19:22
Show Gist options
  • Save kvalexandr/0642a800cee52ebae78d to your computer and use it in GitHub Desktop.
Save kvalexandr/0642a800cee52ebae78d to your computer and use it in GitHub Desktop.
UPDATE wp_options SET option_value = replace(option_value, 'http://domain.ru', 'http://newdomain.ru') WHERE option_name = 'home' OR option_name = 'siteurl';
UPDATE wp_posts SET guid = replace(guid, 'http://domain.ru','http://newdomain.ru');
UPDATE wp_posts SET post_content = replace(post_content, 'http://domain.ru', 'http://newdomain.ru');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment