diff --git a/redirect.php b/redirect.php index 89d2707e62..9057ffe256 100644 --- a/redirect.php +++ b/redirect.php @@ -34,7 +34,11 @@ if($_GET['go']) { - Header('Location: ' . html_entity_decode(urldecode($_GET['go']))); + $url= html_entity_decode(urldecode($_GET['go'])); + unset($_GET['go']); + $url=$url."&".http_build_query($_GET); + + Header('Location: ' . html_entity_decode(urldecode($url))); exit; } else