*✅ Canonical URL이란? *표준

중복된 컨텐츠가 여러 URL에서 제공되는 경우, 검색 엔진에게 선호하는 정규 URL을 지정하는 방법.

<head>
	<link rel="canonical" href="정규_URL">
</head>

✅ Why?

✅ When?

✅ NEXT.js 에서 사용하기

import Head from 'next/head/';

export default function ProductPage() {
  return (
    <>
      <Head>
        <link rel="canonical" href="<https://example.com/product/shirt>" />
      </Head>
      <h1>Content Page</h1>
    </>
  );
}