• Introducing WebPros Cloud - a fully managed infrastructure platform purpose-built to simplify the deployment of WebPros products !  WebPros Cloud enables you to easily deliver WebPros solutions — without the complexity of managing the infrastructure.
    Join the pilot program today!
  • Support for BIND DNS has been removed from Plesk for Windows due to security and maintenance risks.
    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.

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