Check if your URL follows canonical best practices
A canonical URL is the single preferred version of a web page when multiple URLs serve identical or near-identical content. Search engines use the canonical URL to consolidate indexing signals and avoid penalising duplicate content.
The most common duplicates are protocol and subdomain variants:
http://example.comhttps://example.comhttp://www.example.comhttps://www.example.comAll non-canonical variants should redirect to the one true URL using a permanent 301 or 308 redirect, and that page should declare itself canonical with a <link rel="canonical"> tag.
301 or 308) rather than a temporary 302?
<link rel="canonical" href="…"> in its <head>?
<meta http-equiv="refresh"> tag used instead of a proper HTTP redirect?