• 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.

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