• We value your experience with Plesk during 2024
    Plesk strives to perform even better in 2025. To help us improve further, please answer a few questions about your experience with Plesk Obsidian 2024.
    Please take this short survey:

    https://pt-research.typeform.com/to/AmZvSXkx
  • 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