How to change the URL of a WordPress installation

In order to hide the fact that I have parked a website on a subdomain of foxdenuk.com I only needed to add (NOT REPLACE) two lines of code to wp-config.php

define(‘WP_HOME’,’http://greenlandwhitefront.org‘);

define(‘WP_SITEURL’,’http://greenlandwhitefront.org‘);

Neat!