SSL Certificate

My SSL Certificate randomly stopped working for infraexdev.com

From my side, the SSL CERTIFICATE is working fine. But the problem is when you open the site from this link, it redirects you to non SSL page.
Try adding https:// before your domain name!
You need to configure your htaccess file in order for a permanent redirect to https

And additional to that.
You can insert this code into your .htaccess file.

RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]

This topic was automatically closed 60 days after the last reply. New replies are no longer allowed.