Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save flumono/3f330be6cd4851f65101a7368cce8a7b to your computer and use it in GitHub Desktop.
Save flumono/3f330be6cd4851f65101a7368cce8a7b to your computer and use it in GitHub Desktop.
Безболезненный перенос сайта на WordPress на новый домен
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