• Debian 11 is approaching its end-of-life (vendor EOL date - August 31, 2026). Plesk Obsidian 18.0.80 will be the last release to support it.
    If you are running Plesk Obsidian on Debian 11, we recommend you upgrade those servers to Debian 12 using our dist-upgrade tool.
  • We plan to deprecate and remove the support for XML RPC protocol versions earlier than 1.6.9.1 in Plesk Obsidian 18.0.82. We strongly recommend that you update all existing integrations using earlier versions of the XML RPC protocol to comply with the version 1.6.9.1 specification.

How to set my whole website to https and redirect all http to https

rene1

New Pleskian
Hi,

I´ve red that a whole https website might be better for SEO than just a mixed version.
So I want to change the whole website to https.

We are using Plesk 12 on Win 2008 R2.
One Website is using DotNetNuke 7.3.2.
How can I automatically set the whole website to https?

What happens to the users that just type domainname.com without http or https.?

What is the right search engine friendly technique to permanently redirect to the https version even when the user is not using the application protocol prefix http/https?

Where can I do the setup in Plesk 12 fro Windows?

Are their any other drawbacks that I have to think over before I do the changes?

Best regards,

Rene
 
Sorry but I don´t have this option "Additional Apache directives -> Additional directives for HTTP", because I use Plesk 12 with Windows 2008 and IIS 7.5, not with Apache.

Any other suggestions?
 
You can try addming the redirection code in IIS rewrite section. It works like .htaccess in linux. You can simply create rule which you want to use for redirection and add them in IIS rewrite.
 
Sergey, aboive redurect works nicely for me on Plesk 12. I have one server left with Plesk 11.0.9 and I wander where would this option ?

Currentlly below code on .htaccess works perfectly, but I would lprefer to use the option on Plesk, if any.

RewriteEngine On
RewriteCond %{HTTPS} !=on
RewriteRule ^/?(.*) https://%{SERVER_NAME}/$1 [R,L]
 
Back
Top