• The APS Catalog has been deprecated and removed from all Plesk Obsidian versions.
    Applications already installed from the APS Catalog will continue working. However, Plesk will no longer provide support for APS applications.
  • Please be aware: with the Plesk Obsidian 18.0.78 release, the support for the ngx_pagespeed.so module will be deprecated and removed from the sw-nginx package.

Plesk 8.6.0 Force https

M

meisi

Guest
Hey guys. I have a valid SSL certificate installed and have checked the box to share httpdocs and httpsdocs. Everything works correctly when people visit https://mydomain.com, but I was wondering what the best way to require ssl is in this version of plesk.
 
You should be able to do this with an .htaccess rule in your site root.

Something like

RewriteEngine On
RewriteCond %{SERVER_PORT} 80
RewriteRule ^(.*)$ https://mydomain.com/$1 [R,L]

that should take anyone who uses port 80 (non-SSL) to the equivalent page on the HTTPS site I think.

HTH
 
Back
Top