I followed the directions at https://www.digitalocean.com/community/tutorials/how-to-set-up-a-host-name-with-digitalocean for setting up a host name with digital ocean. However when I visit my domain name (www.domain.com) it opens up the website but then the ip address appears in the address bar instead of the domain name. How do I change this so only the domain name appears?
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
This question was answered by @JonsJava:
Is this a wordpress site? If so, that information is stored in the database, in the wp_config. You can fix it with this query (modify for your needs before using):
UPDATE wp_options SET option_value='http://domain.com' WHERE option_name IN ('siteurl','home');
Click below to sign up and get $100 of credit to try our products over 60 days!
Is this a wordpress site? If so, that information is stored in the database, in the wp_config. You can fix it with this query (modify for your needs before using):
@JonsJava your solution worked for me since I was dealing with a wordpress site, thanks!
Hi! Could you pastebin your Apache configuration? What kind of site is it? Any details you could provide would make it easier for us to help.