Change WordPress Domain

From Tech Wiki
Revision as of 19:27, 8 March 2023 by Adam.birds (talk | contribs) (Created page with "'''To change a WordPress domain execute the following MySQL Commands:''' <pre> UPDATE wp_options SET option_value = replace(option_value, 'https://oldomain.com', 'https://new...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

To change a WordPress domain execute the following MySQL Commands:

UPDATE wp_options SET option_value = replace(option_value, 'https://oldomain.com', 'https://newdomain.com') WHERE option_name = 'home' OR option_name = 'siteurl';
UPDATE wp_posts SET guid = replace(guid, 'https://oldomain.com', 'https://newdomain.com');
UPDATE wp_posts SET post_content = replace(post_content, 'https://oldomain.com', 'https://newdomain.com');
UPDATE wp_postmeta SET meta_value = replace(meta_value, 'https://oldomain.com', 'https://newdomain.com');