Wordpress URL Change

From KOP KB
Revision as of 15:00, 1 August 2014 by ReMaster (talk | contribs) (Created page with "This is the sql for updating the urls in Wordpress <syntaxhighlight lang="mysql"> UPDATE wp_options SET option_value = replace(option_value, 'http://somenumsomeletters.wcomhos...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

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');