Viewing 1 replies (of 1 total)
  • Try running the below commands via PHPMyAdmin (replacing the old and new URLs with your old and new URLs). Also just make sure you do a backup of your DB first.

    UPDATE wp_options SET option_value = replace(option_value, 'https://www.oldurl', 'https://www.newurl') WHERE option_name = 'home' OR option_name = 'siteurl';
    
    UPDATE wp_posts SET guid = replace(guid, 'https://www.oldurl','https://www.newurl');
    
    UPDATE wp_posts SET post_content = replace(post_content, 'https://www.oldurl', 'https://www.newurl');
    
    UPDATE wp_postmeta SET meta_value = replace(meta_value,'https://www.oldurl','https://www.newurl');
Viewing 1 replies (of 1 total)
  • The topic ‘Moved site over but images link to the original site’ is closed to new replies.