リファラーを確認www.example.com
するためにリダイレクト先のドメインを指定します。www.whatismyreferer.com
PHP ヘッダーを使用してページをリダイレクトすると、No referer / hidden が結果に表示されます。www.example.com
リファラーをonに設定したいwhatismyrefer.com
。
index.php
のファイルの私のコードは次のwww.example.com
とおりです。
<?php
header("Referrer-Policy: origin");
header("Location: https://www.whatismyreferer.com",true, 302);
?>
私も試しreferrer-policy: unsafe-url
ましたが、まだリファラーを取得しません
しかし、私が使用する場合:
<meta name="referrer" content="origin">
<meta http-equiv="refresh" content="0;https://www.whatismyreferer.com">
次に、リファラーを示します。メタタグでやりたくない、ヘッダーでやりたいlocation
。