• If you are still using CentOS 7.9, it's time to convert to Alma 8 with the free centos2alma tool by Plesk or Plesk Migrator. Please let us know your experiences or concerns in this thread:
    CentOS2Alma discussion
  • Please beaware of a breaking change in the REST API on the next Plesk release (18.0.62).
    Starting from Plesk Obsidian 18.0.62, requests to REST API containing the Content-Type header with a media-type directive other than “application/json” will result in the HTTP “415 Unsupported Media Type” client error response code. Read more here

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