Hi all, I have two “.it” domains I want to redirect to their “.com” version.
So:
Each .com has its own droplet. Both “.it” domains are pointing to a third droplet. This third droplet is an Ubuntu/Apache configuration.
On it I created virtualhosts for both domains and setup redirects with .htaccess. Wile the redirects are working on http, when getting to the domains vai https, both show me de index.html of domain1.it and not redirecting.
I also tried to setup the redirect inside each vhost.conf, wht no result. I’m not used to manage apache or dns records, I’m tryin to fix someone else’s work, but I have no clue of what’s going on.
Thank for any help
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!
Thank you, I gave it a try, unfortunately this does not solve the problem. It looks like it’s ignoring the .htaccess file.
Previous .htaccess configuration was
RewriteEngine On
RewriteCond %{HTTP_HOST} !^www\.domain1\.it$
RewriteRule (.*) http://www.domain1.com/$1 [R=301,L]
RewriteCond %{HTTP_HOST} !^domain1\.it$
RewriteRule (.*) http://www.domain1.com/$1 [R=301,L]
Hi @K89AG,
To do an HTTPS redirect from one domain to another you can add the following code in your .htaccess files
Redirect 301 / https://domain1.com
And for domain2.com, you can do
Redirect 301 / https://domain2.com
Regrads, KFSys
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.