Hi there, Sorry if this asked many times, I haven’t found. I have some domain(my.fancydomain.com) for my wordpress installation. But Id like to add another domain (my2.fancydomain.com). Both domains would show/serve the same www/ directory. I guess I have to edit vhost conf file. but it seems there are some other settings involved. Can you provide with step by step guid? Thank you
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
Hi!
First, you will need to point the second domain to your droplet. To do that, add an A DNS record with the name of my2.fancydomain.com. (with the trailing dot) and the value of your droplet’s IP address.
Then, you need to configure Apache to serve the right content on that domain. If you want both domains to serve the same files, you can just set up the second domain as an alias to the first domain. Edit your Virtual Host config file in /etc/apache2/sites-enabled and add the following line after ServerName my.fancydomain.com:
ServerAlias my2.fancydomain.com
If a ServerAlias line already exists, you have to append the second domain to it instead:
ServerAlias some-other-domain.com my2.fancydomain.com
Finally, restart Apache so that the changes take effect:
sudo service apache2 restart
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
Full documentation for every DigitalOcean product.
The Wave has everything you need to know about building a business, from raising funding to marketing your product.
Stay up to date by signing up for DigitalOcean’s Infrastructure as a Newsletter.
New accounts only. By submitting your email you agree to our Privacy Policy
Scale up as you grow — whether you're running one virtual machine or ten thousand.
Sign up and get $200 in credit for your first 60 days with DigitalOcean.*
*This promotional offer applies to new accounts only.