• 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

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