Ingreso rápido:  

Forum: General Discussion

Tema: Insecure logins on virtualdj.com

Este tópico es antiguo y puede contener información incorrecta para la nueva versión.

I have been accessing the virtualdj.com website from home and work and my phone and can't get a secure login. Is anyone else having the same problem?
 

Mensajes Tue 14 Mar 17 @ 3:13 pm
OK turns out google has your correct website URL = https://www.virtualdj.com yet if someone types in virtualdj.com in the address bar it goes to the insecure site (bad) so the web developers @virtualdj need to modify the .htaccess file or modify your server code to automatically redirect insecure http to https.

For example in php using redirection something like this:

if($_SERVER["HTTPS"] != "on")
{
header("Location: https://" . $_SERVER["HTTP_HOST"] . $_SERVER["REQUEST_URI"]);
exit();
}
 

Mensajes Sat 18 Mar 17 @ 5:39 pm


(Los tópicos y foros antiguos son automáticamente cerrados)