Redirect http to https using htaccess

apache-redirect-http-to-https-using-htaccess-rewrite-rules

Browsing your site over secure connection (HTTPS). One of the easy way to redirect the user to secure connection can be done by using .htaccess. The sample code for  Redirect http to https using htaccess as follow RewriteEngine On RewriteCond %{HTTPS} off RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [R,L]

SSL Warning: This website does not supply identity information

Tech Dasher

In a SSL certified website. You will see SSL Warning “This website does not supply identity information”. This is due to the page content is not encrypted. To remove this warning by doing the following procedure. Check the  "src" property of the following element <img>, <video>, <audio> or <object> If it has "http://"

Top