Skip to content

Instantly share code, notes, and snippets.

@nyl2k8
Last active May 23, 2018 09:36
Show Gist options
  • Save nyl2k8/c67a268059008307d0febb36bb6d9c14 to your computer and use it in GitHub Desktop.
Save nyl2k8/c67a268059008307d0febb36bb6d9c14 to your computer and use it in GitHub Desktop.
# 1) Replace 'http://localhost/site.loc' with 'http://site.com'
# 2) Check if wp_ prefix needs to changed.
# 3) Avoid trailing slashes in url. eg. http://site.com/
UPDATE wp_options SET option_value = replace(option_value,
'//localhost/website', '//website.loc') WHERE
option_name = 'home' OR option_name = 'siteurl';
UPDATE wp_posts SET guid = replace(guid,
'//localhost/website','//website.loc');
UPDATE wp_posts SET post_content = replace(post_content,
'//localhost/website', '//website.loc');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment