strictoriginwhencrossorigin
Strict-origin-when-cross-origin is a value of the Referrer-Policy header used by web browsers to control the amount of the referring URL that is sent with requests. It represents a balance between privacy and the usefulness of navigation data.
Under this policy, the browser sends the full URL of the referring page for same-origin requests, preserving
Practically, strict-origin-when-cross-origin reduces data exposure in logs and analytics tools on external sites, while maintaining useful
Implementation can be done via server headers or HTML metadata. The HTTP header is Referrer-Policy: strict-origin-when-cross-origin.