1

リファラーを確認www.example.comするためにリダイレクト先のドメインを指定します。www.whatismyreferer.comPHP ヘッダーを使用してページをリダイレクトすると、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

4

1 に答える 1