Wordpress

[WordPress] How to Change Your WordPress URLs to the other

Using wp-config.php File or  functions.php File 

Way 1. Change WordPress Site URLs Using wp-config.php File

If you installed your wordpress such as : /var/www/html/wordpress/*

EDIT :

sudo vi /var/www/html/wordpress/wp-config.php

Next, add the following code at the bottom:

1

2

define( ‘WP_HOME’, ‘https://mywordpress.com’ );

define( ‘WP_SITEURL’, ‘https://mywordpress.com’ );

 

Way 2. Change WordPress Site URLs Using function.php File

If you installed your wordpress’s themes as urbane : /var/www/html/wordpress/wp-content/themes/urbane/

EDIT :

sudo vi /var/www/html/wordpress/wp-content/themes/urbane/function.php

Next, add the following code at the bottom:

1

2

update_option( ‘siteurl’, ‘https://mywordpress.com’ );

update_option( ‘home’, ‘https://mywordpress.com’ );

Once everything gets back to normal, remove those two lines of code by your changes