• Please be aware: Kaspersky Anti-Virus has been deprecated
    With the upgrade to Plesk Obsidian 18.0.64, "Kaspersky Anti-Virus for Servers" will be automatically removed from the servers it is installed on. We recommend that you migrate to Sophos Anti-Virus for Servers.
  • The Horde webmail has been deprecated. Its complete removal is scheduled for April 2025. For details and recommended actions, see the Feature and Deprecation Plan.
  • We’re working on enhancing the Monitoring feature in Plesk, and we could really use your expertise! If you’re open to sharing your experiences with server and website monitoring or providing feedback, we’d love to have a one-hour online meeting with you.

Question webmail https redirect for one domain only

JeffreyZ

Basic Pleskian
I've seen a number of threads regarding adding custom rules to templates but these all apply to ALL domains. I'd like to be able to add redirect instructions into apache "additional directives for http" on individual domains. I've tried a few things, nothing works so far.

I see rewrite rules in this article and this one but these are specific to changes in templates.

Can a directive be added to redirect a single domain http webmail to https webmail?
 
There is "only" 1 webmail, so only 1 place to enter redirect rules. This cant be done on domain level. i think How to redirect webmail HTTP to HTTPS? solution 1 is the best place to do this. Apply the same rules but with condition the name of the 1 webmail you want to redirect.
From the top of my head i think it would look like this, but there are plenty .htaccess build websites around.

rewritecond %{http_host} webmail.domain.com
rewriteRule ^(.*) https://webmail.domain.com$1 [R=301,L]

or
RewriteEngine On
RewriteCond %{HTTP_HOST} ^webmail\.domain\.com [NC]
RewriteCond %{SERVER_PORT} 80
RewriteRule ^(.*)$ https://webmail.domain.com/$1 [R,L]

regards
Jan
 
Back
Top