Skip to content

Instantly share code, notes, and snippets.

@esedic
Created December 12, 2018 08:55
Show Gist options
  • Save esedic/3bcc9a87e84ddc671c4f951eef033553 to your computer and use it in GitHub Desktop.
Save esedic/3bcc9a87e84ddc671c4f951eef033553 to your computer and use it in GitHub Desktop.
SQL queries for moving WordPress website to a new domain
UPDATE wp_options SET option_value = REPLACE(option_value, 'http://dev.mysite.com', 'https://mysite.com') WHERE option_name = 'home' OR option_name = 'siteurl';
UPDATE wp_posts SET post_content = REPLACE (post_content, 'http://dev.mysite.com', 'https://mysite.com');
UPDATE wp_postmeta SET meta_value = REPLACE (meta_value, 'http://dev.mysite.com','https://mysite.com');
UPDATE wp_comments SET comment_content = REPLACE (comment_content, 'http://dev.mysite.com', 'https://mysite.com');
UPDATE wp_comments SET comment_author_url = REPLACE (comment_author_url, 'http://dev.mysite.com','https://mysite.com');
UPDATE wp_posts SET guid = REPLACE (guid, 'http://dev.mysite.com', 'https://mysite.com') WHERE post_type = 'attachment';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment