Consulta SQL para alterar o domínio do site

Faça a mudança das URLs de seu WordPress de forma rápida e prática.
UPDATE {{ sqlprefixo }}options SET option_value = REPLACE (option_value, '{{ sitelocal }}' , '{{ siteremoto }}') WHERE option_name = 'home' OR option_name = 'siteurl';
UPDATE {{ sqlprefixo }}posts SET post_content = REPLACE (post_content, '{{ sitelocal }}' , '{{ siteremoto }}');
UPDATE {{ sqlprefixo }}postmeta SET meta_value = REPLACE (meta_value, '{{ sitelocal }}' , '{{ siteremoto }}');
UPDATE {{ sqlprefixo }}comments SET comment_content = REPLACE (comment_content, '{{ sitelocal }}' , '{{ siteremoto }}');
UPDATE {{ sqlprefixo }}comments SET comment_author_url = REPLACE (comment_author_url, '{{ sitelocal }}' , '{{ siteremoto }}');
UPDATE {{ sqlprefixo }}posts SET guid = REPLACE (guid, '{{ sitelocal }}' , '{{ siteremoto }}');

OBS: A última linha onde está o UPDATE {{ sqlprefixo }}posts SET guid, somente utilize ele se estiver migrando do servidor local ({{ sitelocal }}) para um servidor remoto, se estiver migrando de um servidor remoto para outro servidor remoto, desconsidere a linha abaixo:



UPDATE {{ sqlprefixo }}posts SET guid = REPLACE (guid, '{{ sitelocal }}' , '{{ siteremoto }}');