i have found a snipit that will redirect the visitor to the https:// page even if they try to access via the http://
put this in the verry begining of the index.php file
PHP Code:if ( !isset($_SERVER['HTTPS']) || strtolower($_SERVER['HTTPS']) != 'on' ) {
header ('Location: https://'.$_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI']);
exit();
}



LinkBack URL
About LinkBacks
Reply With Quote





