PHPFixing
  • Privacy Policy
  • TOS
  • Ask Question
  • Contact Us
  • Home
  • PHP
  • Programming
  • SQL Injection
  • Web3.0

Monday, November 14, 2022

[FIXED] How do I disable https on my webserver using Plesk?

 November 14, 2022     centos, php, plesk, server     No comments   

Issue

I've got a CentOS server running Plesk 17, when I disable SSL/TLS Support in the hosting settings for my webisite, the document root changes to /var/www/vhosts/default/htdocs instead of staying with the one set /var/www/vhosts/example.org.

I'd like to disable completely https and redirect everything to http, does anyone know how to accomplish such a task?

Thank you.


Solution

Well, actually you can't redirect from HTTPS to HTTP when HTTPS is disabled.

When you disable HTTPS for domain.tld and you trying to open https://domain.tld this request will be catch by Default Virtual Host which document root is /var/www/vhosts/default/htdocs

Yes, you can place in this document root .htaccess with redirect rules but any user will see SSL Certificate Error first and in most of the cases will not continue to open such site.

To perform redirect from HTTPS to HTTP domain should have enabled HTTPS with valid SSL certificate, only in this case you can redirect user to HTTP.



Answered By - Oleg Neumyvakin
Answer Checked By - Senaida (PHPFixing Volunteer)
  • Share This:  
  •  Facebook
  •  Twitter
  •  Stumble
  •  Digg
Newer Post Older Post Home

0 Comments:

Post a Comment

Note: Only a member of this blog may post a comment.

Total Pageviews

Featured Post

Why Learn PHP Programming

Why Learn PHP Programming A widely-used open source scripting language PHP is one of the most popular programming languages in the world. It...

Subscribe To

Posts
Atom
Posts
Comments
Atom
Comments

Copyright © PHPFixing