Skip to content

Instantly share code, notes, and snippets.

@MrZyr0
Last active November 30, 2020 13:51
Show Gist options
  • Save MrZyr0/e811d995055c72fb7e65b876100bd338 to your computer and use it in GitHub Desktop.
Save MrZyr0/e811d995055c72fb7e65b876100bd338 to your computer and use it in GitHub Desktop.
UPDATE wp_options SET option_value = replace(option_value, 'http://oldurl', 'https://newurl') WHERE option_name = 'home' OR option_name = 'siteurl';
UPDATE wp_posts SET guid = replace(guid, 'oldurl','newurl');
UPDATE wp_posts SET post_content = replace(post_content, 'http://oldurl', 'https://newurl');
UPDATE wp_postmeta SET meta_value = replace(meta_value,'http://oldurl','https://newurl');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment