• Our team is looking to connect with folks who use email services provided by Plesk, or a premium service. If you'd like to be part of the discovery process and share your experiences, we invite you to complete this short screening survey. If your responses match the persona we are looking for, you'll receive a link to schedule a call at your convenience. We look forward to hearing from you!
  • The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.

Force https/SSL single domain; howto

DocGerry

New Pleskian
Plesk 9.5 on Ubuntu on a VPS. Three domains on the server, one of them has the SSL certificate which is the host name of the VPS server

SSL certificate installed myownsingledomain.com

All traffic to http://myownsingledomain.com and files and subdirectories I want to redirected to https://myownsingledomain.com

The domain is set to use the one directory httpdocs, and https://myownsingledomain.com works...the secured green thing comes up on browsers as authenticated until of course you click on any link and it takes you to back to http

Anyone clicking on http://myownsingledomain.com needs to be directed to https with a Rewrite.

The server seems to ignore .htaccess but there is probably a more elegant solution anyway. Perhaps it is so obvious I do not see anything in FAQ or searching the forum. I have searched around and do not find a Plesk specific solution.

Thanks
 
Put this in .htaccess

RewriteEngine on
RewriteCond %{HTTPS} off
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI}

And make sure your apache conf file has this in it somewhere
#
# AccessFileName: The name of the file to look for in each directory
# for additional configuration directives. See also the AllowOverride
# directive.
#
AccessFileName .htaccess
 
Back
Top