• 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
  • Inviting everyone to the UX test of a new security feature in the WP Toolkit
    For WordPress site owners, threats posed by hackers are ever-present. Because of this, we are developing a new security feature for the WP Toolkit. If the topic of WordPress website security is relevant to you, we would be grateful if you could share your experience and help us test the usability of this feature. We invite you to join us for a 1-hour online session via Google Meet. Select a convenient meeting time with our friendly UX staff 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