for some time I've had a redirect installed on my old HTML site pointing to the WP installation (in the same directory) but needed to make the move permanent. This involved the host making a change to point to index.php in the WP folder and altering the wp-config.php to reflect the change.
Old config:
define('WP_HOME','http://williambowles.info/wordpress/');
define('WP_SITEURL','http://williambowles.info/wordpress/');
New url:
define('WP_HOME','http://williambowles.info/');
define('WP_SITEURL','http://williambowles.info/');
(old url http://williambowles.info/wordpress, new url, http://williambowles.info), but I can't get it to work. The site comes up but it's text only, none of the links work and I can't get into the admin.
Any ideas how to fix it?
Bill