redirecting you to the test pages ...
<%
if (server['SERVER_PROTOCOL'] == "http" &&
server['TLS_SUPPORT'] == "True") {
if (headers['HOST']) {
redirect("https://" + headers['HOST'] + request['REQUEST_URI']);
} else {
redirect("https://" + server['SERVER_NAME'] + ":" + server['SERVER_PORT'] + request['REQUEST_URI']);
}
} else {
redirect("esptest/index.esp");
}
%>