I have a web site server which do such work like this:

The server receives request from user A(request referer is blank) and then redirect(at server side) user A to visiting web site B;

Is there any way I could modify user A's request referer to my domain name, then site B can get my domain name from user A's request?

Thanks in advance!


Because the web site B (my customer) want to know how many visits I have brought to him; I don't want to modify my client software and want to know if there's another can get this :)

link|improve this question

71% accept rate
Why would you need this? – Ahmed Khalaf Sep 17 '09 at 10:52
Because the web site B (my customer) want to know how many visits I have brought to him; I don't want to modify my client software and want to know if there's another can get this :) – bluesea007 Sep 17 '09 at 11:00
feedback

3 Answers

up vote 0 down vote accepted

As far as I know, the browser automatically sets the referrer unless the user disabled that behaviour. So: no, you can't change it server-side.

Because the web site B (my customer) want to know how many visits I have brought to him; I don't want to modify my client software and want to know if there's another can get this :)

You could append a unique identifier to the URL so that your customer can track who is coming from your site:

http://www.yourcustomer.com/page.html?ref=bluesea007

Actually, Google Analytics makes use of this principle.

link|improve this answer
feedback

No, a redirect is just telling the client to use a different URL to complete the request. But the actual request to the new URL is done by the client, not the server. And the Referer header field is only set when the client followed an URL on a non-HTTP way (link click, form submission, “meta redirect”, etc.).

link|improve this answer
feedback

Only via a client-side (e.g. JavaScript) redirect as far as I know. The kind of thing you just have to try it and see.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.