快速登录:  

Forum: General Discussion

话题: Insecure logins on virtualdj.com

由于该帖子已年深日久,可能包含陈旧过时或描述错误的信息。

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?
 

发表时间 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();
}
 

发表时间 Sat 18 Mar 17 @ 5:39 pm


(陈旧帖子或论坛版块会自动关闭)