Revision: 43848
Initial Code
Initial URL
Initial Description
Initial Title
Initial Tags
Initial Language
at April 1, 2011 03:04 by timpreneur
Initial Code
function redirectSecure()
{
if (document.location.protocol != “https:â€){
var oldURL = window.location.hostname + window.location.pathname+window.location.search;
var newURL = “https://†+ oldURL;
window.location = newURL;
}
}
redirectSecure();
Initial URL
Initial Description
Redirect to SSL script
Initial Title
Javascript redirect to SSL
Initial Tags
Initial Language
JavaScript