The referrer, or HTTP referrer — also known by the common misspelling referer that occurs as an HTTP header field — identifies, from the point of view of an Internet webpage or resource, the address of the webpage of the resource which links to it. By checking the referrer, the new webpage can see ...

learn more… | top users | synonyms

47
votes
6answers
61k views

Determining Referer in PHP

What is the most reliable and secure way to determine what page either sent, or called (via AJAX), the current page. I don't want to use the $_SERVER['HTTP_REFERER'], because of the (lack of) ...
4
votes
2answers
3k views

how reliable is HTTP_REFERER

I need to check and record the referrer of visitors to my web application. How reliable is using HTTP_Referer? And are there other alternatives?
28
votes
4answers
10k views

Will a 302 redirect maintain the referer string?

I need to redirect the user from one page to another, but I need to maintain the original referer string. So, for example, if they start out on http://www.othersite.com/pageA.jsp, click a link that ...
21
votes
4answers
47k views

Get original URL referer with PHP?

I am using $_SERVER['HTTP_REFERER']; to get the referer Url. It works as expected until the user clicks another page and the referer changes to the last page. How do I store the original referring ...
25
votes
4answers
22k views

Getting the HTTP Referrer in ASP.NET

I hope someone can help me. I'm just looking for a quick, easy and reliable way of getting the browser's HTTP Referrer in ASP.Net (C#). I know the HTTP Referrer itself is unreliable, but I do want a ...
3
votes
3answers
11k views

PHP - Referer redirect script

Often, when searching for answers, I have found that certain websites will allow you to read the information they offer if the referer is, for example, google.com. Yet, if you link directly to the ...
5
votes
3answers
5k views

http_referer lost using https

Picture two web pages, both viewed using https. They reside on different domains. How can I (reasonably) ensure that someone arriving at my page came via a hyperlink that resides on another ...
7
votes
7answers
2k views

Get referrer URL - visitors coming from Paypal (HTTPS)

Hi I'm trying to get the referrer url but it doesn't work when the visitor comes to the site from Paypal $ref = $_SERVER['HTTP_REFERER']; echo $ref; Is there a simple way to get the paypal url if ...
1
vote
5answers
825 views

Which browsers/plugins block HttpReferer from being sent? [closed]

I am trying to interpret HttpReferer strings in our server logs. It seems like there is quite a high number of empty values. I am wondering how many of these empty values are due to direct hits from ...
12
votes
2answers
2k views

Email Tracking - GMail

I am creating my own email tracking system for email marketing tracking. I have been able to determine each persons email client they are using by using the http referrer but for some reason GMAIL ...
12
votes
2answers
10k views

How to save http referer in rails

I'm trying to save the site that a user came from when they sign up. Right now I have a before_filter in my ApplicationController: before_filter :save_referer def save_referer unless ...
1
vote
3answers
754 views

How to get the HTTP_REFERER from a Yahoo or Gmail

I have an e-mailer script that send messages to Yahoo or Gmail with a link on it, a link that will return back to my website when it is clicked. I need to get the HTTP_REFERER from Yahoo or Gmail. in ...
9
votes
8answers
5k views

Is it possible to capture search term from Google search?

This may be a stupid question, but is it possible to capture what a user typed into a Google search box, so that this can then be used to generate a dynamic page on the landing page on my Web site? ...
5
votes
1answer
2k views

Specifying HTTP referer in embedded UIWebView

In my app, I allow the user to open up an external page in an embedded UIWebView. Is it possible for me to set the referer header that's sent with that request? I'd like for my app to get the 'cred' ...
5
votes
6answers
5k views

php/html - http_referer

I am creating a website and on one particular page, am wanting to send the user back to the previous page. I am fairly new to PHP/HTML and have been using some existing code for ideas and help. The ...
3
votes
2answers
593 views

Url fragment and Referer header

Imagine you are on a page whose URL has a fragment (the part after the #), and click a link to go to another page. Most browsers will send the URL of the original page to the server in the Referer ...
2
votes
3answers
3k views

How do you spoof HTTP_REFERER?

I need to try and spoof the HTTP_REFERER passed my another page so that in the destination page, I can determine of the request is coming in from the "right" page and perform appropriate logic. How ...
5
votes
2answers
4k views

ASP.NET - Response.Redirect Not Populating Url Referrer

I feel like i've done this a ton of times, but i can't for the life of me figure out what is going wrong. Default.aspx: protected void Page_Load(object sender, EventArgs e) { var r1 = ...
4
votes
2answers
4k views

Get HTTP Referrer on Redirection

How can you get the HTTP Referrer when redirected from another website, not when they click on a link since it would work for $_SERVER['HTTP_REFERER'], but it doesn't work when a user has been ...
3
votes
1answer
3k views

Redirect on the basis of referer HTTP_REFERER htaccess

I've an issue where i want to redirect a user on the basis of a substring from referered url, How i can accomplish that using htaccess? User is on http://example.com/aqeel/videos/ There is a ...
3
votes
6answers
185 views

Redirects and Referers

My actual implementation of this is much more complicated, with authentication and a bunch of other stuff, but at the simplest form, here's the problem I'm having. Redirecting with header doesn't ...
3
votes
2answers
3k views

IFrame referer question - asp.net c#

One of our application will be run in an iframe, inside salesforce and I'm having troubles with accessing the referer. They'd like us to do some referer checks, to make sure the request is coming from ...
2
votes
1answer
2k views

How do I use cURL & PHP to spoof the referrer?

I'm trying to learn cURL with PHP to spoof the referrer to a website. With the following script I expected to accomplish this...but it seems to not work. Any ideas/suggestion where I am going ...
2
votes
2answers
2k views

how should we validate http header referrer in aspx .net

I want to ensure ensure nothing untoward gets into the referrer on an error page. What should I be checking in order to validate the http header. below is my current code: // Ensure the referrer ...
1
vote
1answer
643 views

How to send a URL request as 'Referer'

I have an app which existed as an iPhone app first and now as an Android app. One of the functions is to load a web page which bypasses the security login by passing a string as Referer. The code for ...
1
vote
1answer
782 views

Deny referrals from all domains except one

Is it possible to accept traffic from only one domain, ideally using a .htaccess file? I want my site to only be accessible via a link on another site I have. I know how to block one referring ...
1
vote
2answers
1k views

in what situation does the HTTP_REFERER not work?

i have used the REFERER before in foo.php to decide whether the page iframing myself is of a particular URL. (using $_SERVER['HTTP_REFERER']) it turned out that most of the time, it worked (like ...
0
votes
3answers
152 views

contact form including referral of previous page

I have a php contact form using POST and I want to automatically include the referring page on the form, that is the website linking to the contact form. This would normally be within my website. ...
0
votes
2answers
681 views

HTTP_REFERER coming back with NULL, key does not exist in $_SERVER

For the first time since using $_SERVER['HTTP_REFERER'] it gives me NULL as a result. When I do var_dump($_SERVER) the HTTP_REFERER key does not exist. I also try to visit site with different ...
0
votes
1answer
427 views

Add “referer” to header when using ShellExecute

I'm using ShellExecute to open the user's default browser to a specific web site. I'd like to add a referer field to the URL. Is this possible to do while continuing to use ShellExecute? If not, ...
0
votes
2answers
679 views

HTTP Referer on HTML Frames

Say that I have a link from one.com to two.com/A.html. A.html looks like this <FRAMESET cols="100%"> <FRAME src="B.html"> </FRAMESET> The HTTP Referer on A.html is "one.com", ...