i need to do a 302 redirect to a partner company domain. they want to track all of their incoming traffic.
will my index.html 302'd page not pass referrer info?
how do i configure this page to pass the referrer info, if not.
i need to do a 302 redirect to a partner company domain. they want to track all of their incoming traffic.
will my index.html 302'd page not pass referrer info?
how do i configure this page to pass the referrer info, if not.
The referer is sent by the browser, and there is not much you can do about that.
If they really want to track which users came from your website, a solution would be to add a parameter to the URL you are redirecting to.
For instance, instead of redirecting to
http://www.otherserver.com/index.php
You would redirect to something like :
http://www.otherserver.com/index.php?from=mysite
But, of course, this means more work, both on your side and theirs...