Reputation: 891
I need the path of the referrer. I don't want the domain name. For example, if the referrer is
http://www.google.com/adsense
I want /adsense
.
Upvotes: 89
Views: 87040
Reputation: 4432
request.referer
returns a string, but you can use Ruby's URI Module to wrap it and then simply ask it for its path:
if URI(request.referer).path == '/adsense'
Upvotes: 147