Looking for help with your next project, contact us today to see how we can help

Let's Chat

WordPress URL Replace Migration Tool

The fastest and easiest way to completely replace any url in your WordPress database. This tool is perfect for SSL installation url replacements or domain replacement whilst migrating your WordPress website.


UPDATE wp_options SET option_value = replace(option_value, 'http://www.oldurl', 'http://www.newurl') WHERE option_name = 'home' OR option_name = 'siteurl';

UPDATE wp_posts SET guid = replace(guid, 'http://www.oldurl','http://www.newurl');

UPDATE wp_posts SET post_content = replace(post_content, 'http://www.oldurl', 'http://www.newurl');

UPDATE wp_postmeta SET meta_value = replace(meta_value,'http://www.oldurl','http://www.newurl');