Skip to content

Instantly share code, notes, and snippets.

@Astargh
Created March 3, 2017 09:28
Show Gist options
  • Save Astargh/a47e0256d59ae80347a96c3190195da8 to your computer and use it in GitHub Desktop.
Save Astargh/a47e0256d59ae80347a96c3190195da8 to your computer and use it in GitHub Desktop.
Команда в SQL для переноса WP на другой домен
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