リファラーを使って、ちょっとした処理を追加しようと思ったら、
httpsからhttpへはリファラーを渡せない
そこで、HTMLのmetaで下記を指定すると、
<meta name="referrer" content="unsafe-url">
うまく言った。
でも、最新のブラウザ(Chrome、FF)しか対応していない。
(safariもダメでした)By 2015/06/30
なので、汎用的な方法として、
海外文献より、リダイレクトを使用してリファラーを渡す方法も合わせて載せておきます。
I was able to set up a link from an HTTPS page to a HTTP page on another domain and still pass the first page's URL as a referrer using the following technique.