Update your linux hosted WordPress sites URL

There are a few ways. I had access to the underlying database in mysql and just ran this:

update wp_options
set option_value='http://www.yourdomain.com'
where option_name like '%siteurl%' or option_name='home';
commit;

Leave a Comment

Scroll to Top