egroupware/redirect.php

35 lines
1.3 KiB
PHP
Raw Normal View History

<?php
/**************************************************************************\
2003-12-31 14:18:12 +01:00
* eGroupWare - save redirect script *
* idea by: Jason Wies <jason@xc.net> *
* doing and adding to cvs: Lars Kneschke <lkneschke@linux-at-work.de> *
2003-12-31 14:18:12 +01:00
* http://www.egroupware.org *
* -------------------------------------------- *
* This program is free software; you can redistribute it and/or modify it *
* under the terms of the GNU General Public License as published by the *
* Free Software Foundation; either version 2 of the License, or (at your *
* option) any later version. *
\**************************************************************************/
/* $Id$ */
/*
Use this script when you want to link to a external url.
2003-12-31 14:18:12 +01:00
This way you don't send something like sessionid as referer
Use this in your app:
"<a href=\"$webserverURL/redirect.php?go=".htmlentities(urlencode('http://www.egroupware.org')).'">'
*/
2003-12-31 14:18:12 +01:00
if($_GET['go'])
{
2003-12-31 14:18:12 +01:00
Header('Location: ' . html_entity_decode(urldecode($_GET['go'])));
exit;
}
else
{
2003-12-31 14:18:12 +01:00
echo "this won't work!!";
}
2003-12-31 14:18:12 +01:00
?>