Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Open PhpMyAdmin, choose your database and in the console run commands below:
- UPDATE wp_options SET option_value = replace(option_value, 'https://old.domain.com', 'https://new.domain.com') WHERE option_name = 'home' OR option_name = 'siteurl';
- UPDATE wp_posts SET guid = replace(guid, 'https://old.domain.com', 'https://new.domain.com');
- UPDATE wp_posts SET post_content = replace(post_content, 'https://old.domain.com', 'https://new.domain.com');
- UPDATE wp_postmeta SET meta_value = replace(meta_value, 'https://old.domain.com', 'https://new.domain.com');
Advertisement
Add Comment
Please, Sign In to add comment