Difference between revisions of "Wordpress URL Change"

From KOP KB
Jump to: navigation, search
(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...")
 
Line 5: Line 5:
 
UPDATE wp_posts SET guid = replace(guid, 'http://somenumsomeletters.wcomhost.com','http://domain.com');
 
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_posts SET post_content = replace(post_content, 'http://somenumsomeletters.wcomhost.com', 'http://domain.com');
 
</syntaxhighlight>
 
</syntaxhighlight>

Revision as of 15:01, 1 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');