/ Published in: SQL
run these in the SQL tab
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
UPDATE wp_options SET option_value = REPLACE(option_value, 'http://localhost:8888', 'http://www.NEWSITE.com') WHERE option_name = 'home' OR option_name = 'siteurl'; UPDATE wp_posts SET guid = REPLACE(guid, 'http://localhost:8888','http://www.NEWSITE.com'); UPDATE wp_posts SET post_content = REPLACE(post_content, 'http://localhost:8888', 'http://www.NEWSITE.com');
URL: http://www.mydigitallife.info/how-to-move-wordpress-blog-to-new-domain-or-location/