Unable to load WordPress local site after changing WordPress Address (URL) and Site Address (URL)
I was able to add WordPress Address (URL) and Site Address (URL) manually and access the local site again. What I did was add following code segments to following files. wp-config.php define(‘WP_HOME’,’http://www.local.abc.com’); define(‘WP_SITEURL’,’http://www.local.abc.com’); Functions.php I have added following code just after opening of update_option(‘siteurl’, ‘http://www.local.abc.com’ ); update_option(‘home’, ‘http://www.local.abc.com’ ); After that I have refresh site … Read more