How to direct https requests to http while SSL cert expired? [duplicate]
How to direct https requests to http while SSL cert expired? [duplicate] - If a page has internal and external outgoing links to redirecting URLs, it’s returning 3xx (301, 302, etc.) HTTP status codes standing for redirection. This issue means that the page does not exist on a permanent or temporary basis. It appears on most of the popular web browsers, usually caused by a misconfigured website. However, there are some steps you can take to ensure the issue isn’t on your side. You can find more details about redirecting URLs by reading the Google Search Central overview. In this article, we’ll go over how you can fix the How to direct https requests to http while SSL cert expired? [duplicate] error on your web browser. Problem :
Solution :
We hope that this article has helped you resolve the redirects, https, security-certificate error in your web browsers. Enjoy browsing the internet uninterrupted!
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.
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://%HTTP_HOST%REQUEST_URI
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 http:// protocol.
Comments
Post a Comment