Answers for "change site domain wordpress"

PHP
6

wordpress change site address

// Add to top of wp-config.php
define( 'WP_HOME', 'http://example.com' );
define( 'WP_SITEURL', 'http://example.com' );
Posted by: Guest on May-06-2020
0

move wordpress site to new domain

define('WP_SITEURL', 'http://www.NEW-DOMAIN.com');<br>
define('WP_HOME', 'http://www.NEW-DOMAIN.com');

UPDATE wp_options SET option_value = replace(option_value, 'http://www.old-domain.com', 'http://www.new-domain.com') WHERE option_name = 'home' OR option_name = 'siteurl';

UPDATE wp_posts SET guid = replace(guid, 'http://www.old-domain.com','http://www.new-domain.com');

UPDATE wp_posts SET post_content = replace(post_content, 'http://www.old-url.com', 'http://www.new-url.com');
Posted by: Guest on July-08-2021

Code answers related to "change site domain wordpress"

Browse Popular Code Answers by Language