: How to direct https requests to http while SSL cert expired? The SSL certificate on my site has expired, which has caused https requests to the site to fail. While I am sorting out a new
The SSL certificate on my site has expired, which has caused https requests to the site to fail.
While I am sorting out a new SSL certificate, what can I do to redirect https requests into the http requests?
The https folder of my site is sym-linked to the http folder.
More posts by @Connie744
2 Comments
Sorted by latest first Latest Oldest Best
You would have added http to http redirect in your .htaccess file or your .conf file.
Open the file where the redirect has been added and comment the redirect/rewrite code.
Your website will start to resolve using protocol.
If you have Apache and mod_rewrite, then put this script in a .htaccess file that needs to be in your root folder
RewriteEngine On
RewriteCond %{HTTPS} on
RewriteRule (.*) %{HTTP_HOST}%{REQUEST_URI}
Terms of Use Create Support ticket Your support tickets Stock Market News! © vmapp.org2024 All Rights reserved.