How to change Wordpress URL from wp-config.php
To change wordpress site urls from wp-config.php file in wordpress site root. You just have to add the following to wp-config.php file
define( 'WP_HOME', 'http://yoursiteurl.com' );
define( 'WP_SITEURL', 'http://yoursiteurl.com' );
At thep point where yoursiteurl.com is defined you can add your new website url and the site will be using these to access wordpress.