I have a webpage which refers other pages.
I want to be able to set the HTTP_REFERER on the URL's that are clicked.
What options do I have?
|
I have a webpage which refers other pages. I want to be able to set the HTTP_REFERER on the URL's that are clicked. What options do I have? |
|||||||||||
|
None really. The browser sets this automatically. The only thing you can do is redirect to a script (under your control) like
That file (in this case, PHP) would then do a header redirect to the target, and show up in the receiving site's HTTP_REFERER header. Also, linking to a Other than that, there is nothing you can do to alter it. There is definitely no way to set it to an arbitrary value from within a web site. |
||||
|
|