Search results

  1. D

    Redirect HTTP to HTTPS

    The below code when added to an .htaccess file will automatically redirect any traffic destined for http: to https: RewriteEngine On RewriteCond %{HTTPS} off RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [R,L] You can also add the following lines of code in the index page of your site...
Back
Top