Hi, I setup my main domain picnic.ly and configured it to be associated with a droplet. Then I setup a second domain picnicly.com and set it up to point to the same ip address. This is all working fine.
What I can’t seem to figure out how to do is for picnicly.com to automatically redirect to picnic.ly. I bought the .com address in case people were confused as to the domain, but the one we want to appear in the browser window is picnic.ly.
Thanks!
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!
You can do this via a rewrite set up on your web server. Assuming that you are using apache you will need to do the following.
1.) In your virtualhost configuration (if you haven’t set this up specifically this would be the file /etc/apache2/sites-enabled/000-default.conf) change AllowOverride None to AllowOverride All for your main web root.
2.) Next, enable the rewrite module with the commands:
a2enmod rewrite;
service apache2 restart;
3.) Finally, create an .htaccess file in your web root with the following content. This will redirect any requests for picnicly.com or www.picnicly.com to picnic.ly:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{HTTP_HOST} ^picnicly.com$ [OR]
RewriteCond %{HTTP_HOST} ^www.picnicly.com$
RewriteRule (.*)$ http://picnic.ly/$1 [R=301,L]
</IfModule>
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.