Advertisement
Guest User

Untitled

a guest
Jul 30th, 2015
270
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. UPDATE wp_options SET option_value = replace(option_value, 'http://www.oldurl', 'http://www.newurl') WHERE option_name = 'home' OR option_name = 'siteurl';
  2.  
  3. UPDATE wp_posts SET post_content = REPLACE(post_content, 'http://www.oldurl', 'http://www.newurl');
  4.  
  5. UPDATE wp_posts SET guid = replace(guid, 'http://www.oldurl','http://www.newurl');
  6.  
  7. UPDATE wp_postmeta SET meta_value = replace(meta_value,'http://www.oldurl','http://www.newurl');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement