Web Hosting

Broken Word Press Site

By admin

Edit wp-config.php

It should be possible to fix the site URL using a new feature -

Add these two lines to your wp-config.php, where “example.com” is the NEW location of your site.

define('WP_HOME','http://example.com');
define('WP_SITEURL','http://example.com');

This is not necessarily the best fix, it’s just hardcoding the values into the site itself. You won’t be able to edit them on the General settings page anymore when using this method.

Leave a Reply