It is very easy to change your WordPress URL. You just need to put below code into the wp-config.php file:
define('WP_HOME','http://mywebsite.com');
define('WP_SITEURL','http://mywebsite.com');
Ensure that you change your domain name from mywebsite.com to your own domain name.