Skip to content

Instantly share code, notes, and snippets.

@oliwa
Created February 20, 2018 06:33
Show Gist options
  • Save oliwa/1f07ad877b6acc42808fef822492ff38 to your computer and use it in GitHub Desktop.
Save oliwa/1f07ad877b6acc42808fef822492ff38 to your computer and use it in GitHub Desktop.
SQL Queries to Change Website Domain
UPDATE wp_options SET option_value = REPLACE(option_value, 'http://test.rudrastyh.com', 'https://rudrastyh.com') WHERE option_name = 'home' OR option_name = 'siteurl';
UPDATE wp_posts SET post_content = REPLACE (post_content, 'http://test.rudrastyh.com', 'https://rudrastyh.com');
UPDATE wp_postmeta SET meta_value = REPLACE (meta_value, 'http://test.rudrastyh.com','https://rudrastyh.com');
UPDATE wp_comments SET comment_content = REPLACE (comment_content, 'http://test.rudrastyh.com', 'https://rudrastyh.com');
UPDATE wp_comments SET comment_author_url = REPLACE (comment_author_url, 'http://test.rudrastyh.com','https://rudrastyh.com');
UPDATE wp_posts SET guid = REPLACE (guid, 'http://test.rudrastyh.com', 'https://rudrastyh.com') WHERE post_type = 'attachment';
// https://rudrastyh.com/tools/sql-queries-generator
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment