Difference between revisions of "Wordpress URL Change"
From KOP KB
Line 6: | Line 6: | ||
UPDATE wp_posts SET post_content = replace(post_content, 'http://somenumsomeletters.wcomhost.com', 'http://domain.com'); | UPDATE wp_posts SET post_content = replace(post_content, 'http://somenumsomeletters.wcomhost.com', 'http://domain.com'); | ||
+ | |||
+ | UPDATE wp_postmeta SET meta_value = replace(meta_value, 'http://old-omain-name.com', 'http://new-domain-name.com'); | ||
</syntaxhighlight> | </syntaxhighlight> |
Revision as of 15:22, 6 August 2014
This is the sql for updating the urls in Wordpress
UPDATE wp_options SET option_value = replace(option_value, 'http://somenumsomeletters.wcomhost.com', 'http://domain.com') WHERE option_name = 'home' OR option_name = 'siteurl';
UPDATE wp_posts SET guid = replace(guid, 'http://somenumsomeletters.wcomhost.com','http://domain.com');
UPDATE wp_posts SET post_content = replace(post_content, 'http://somenumsomeletters.wcomhost.com', 'http://domain.com');
UPDATE wp_postmeta SET meta_value = replace(meta_value, 'http://old-omain-name.com', 'http://new-domain-name.com');