I defy you to get here on an insecure connection.

 


Full text of the source of this page (above the line) is below:
	<?php
	//	Force a secure connection.
	if($_SERVER['SERVER_PORT'] != '443') { 
		header('Location: https://'.$_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI']); 
	exit();
	}
	?>
	<html>
	<head>
	<title>You Cant Get Here on http
	</head>
	<body>
	I defy you to get here on an insecure connection.
	<p>&nbsp;<p>
	</body>
	</html>