Last active
May 23, 2018 09:36
-
-
Save nyl2k8/c67a268059008307d0febb36bb6d9c14 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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