D4Ly,
Thanks for the quick response, but that didn't seem to do the trick, here is the server response.
PHP Parse error: parese error, unexpected T_STRING in /path of file on line 3.
<?Php
if(!$_SERVER['HTTPS'] == 'on') {
$url = 'https';
$url .= '://'.$_SERVER['SERVER_HOS
if($_SERVER['QUERY_STRING'
$url .= '?'.$_SERVER['QUERY_STRING
header("Location: ".$url.""); }
exit();
}
?>
Above is my complete file... Any ideas ? I thought maybe the if clause not having a { might affect ?
If I change the request
Jeff.
Main Topics
Browse All Topics





by: D4LyPosted on 2006-01-03 at 14:23:45ID: 15603326
Hi jlockyer-
T'].$_SERV ER['SCRIPT _NAME']; ]>' ') '];
Try this:
if(!$_SERVER['HTTPS'] == 'on'){
$url = 'https';
$url .= '://'.$_SERVER['SERVER_HOS
if($_SERVER['QUERY_STRING'
$url .= '?'.$_SERVER['QUERY_STRING
header("Location: ".$url."");
exit();
}
- D4