[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Phpgroupware-developers] save redirects
From: |
Lars Kneschke |
Subject: |
Re: [Phpgroupware-developers] save redirects |
Date: |
Sat, 29 Dec 2001 23:18:30 +0100 (MET) |
> address@hidden schrieb:
>
> To hide the session id in the URL, we could redirect all external links
> to a URI such as:
> http://localhost.com/phpgroupware/index.php?go=http%3A%2F%
2Fexternal.host.com
> with this as the first check in index.php:
>
> if ($GLOBALS['go'])
> {
> Header('Location: ' . $GLOBALS['go']);
> exit;
> }
>
> To hide the IP, you'd probably have to make an anonymous proxy app that
> would fetch the pages and return them to the user. To hide the IP,
> you'd probably have to make an anonymous proxy app that would fetch the
> pages and return them to the user.
The ip number is no the problem. But the other thing is ok! Thanks!
Cu