<?php
	$outReq = '?';
	foreach ($_GET as $key => $req) {
		$outReq .= $key . '='. $req . '&';
	}
	
	$loc = './';
	if ($outReq != '?') {	$loc .= substr($outReq,0,-1);	}
	
	header ('location: '.$loc);
?>