Hello Everyone , i need to redirect every customer from http://webmail.theirdomain.com to https://webmail3.mydomain.com both URL's are on the same server. I need to make it like this because i have a valid SSL on webmail3.mydomain.com this avoids every client to buy an ssl. thanks )
Hi, Add the entries like this in the apache directives field of the website settings and click on save.
I use Code: RewriteEngine On RewriteCond %{HTTPS} off RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} for redirect http to https with out any problems. If you see a certificate error, maybe something is wrong with your ssl-cert, too.