Report this

What is the reason for this report?

Use multiple domains for the same website?

Posted on June 11, 2017

I recently decided to change the domain name of my website. I have a lot of links to my old domain name and i dont want to lose them. So I want my new domain and my old domain both to point to the same website. This is not hosting multiple websites in one droplet. This is adding two domains to a single website in a single droplet.



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!

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.

Set the DNS for both of your domains to point to your droplet.

Then configure two virtual hosts as follows:

<VirtualHost YOUR_IP_HERE:80>
ServerName www.new-domain.com
...etc...
</VirtualHost>
<VirtualHost YOUR_IP_HERE:80>
ServerName www.old-domain.com
Redirect 301 / http://www.new-domain.com/
</VirtualHost>

@sarwanx23

You can just point your new domain to the IP address of your droplet.

Maybe you also need to create a new vhost for your new domain.

The developer cloud

Scale up as you grow — whether you're running one virtual machine or ten thousand.

Get started for free

Sign up and get $200 in credit for your first 60 days with DigitalOcean.*

*This promotional offer applies to new accounts only.