Redirect Page .htaccess and PHP
Apache .htaccess Set Redirect http to https RewriteEngine on RewriteCond %{HTTPS} off RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} PHP Set Redirect http to https if(empty($_SERVER[‘HTTPS’]) || $_SERVER[‘HTTPS’] == “off”){ $redirect = ‘https://’ . …
Redirect Page .htaccess and PHP Read More