Next.js サーバーサイドでのリダイレクト

imatomix
2021年10月3日 0:21
いつの間にか簡単になってた。ありがたい。メモ。

通常リダイレクト

pages/sample.tsx
export const getServerSideProps: GetServerSideProps = async (context) => { return { redirect: { permanent: false, destination: '/' // トップ画面 } } }

404エラーページへのリダイレクト

pages/sample.tsx
export const getServerSideProps: GetServerSideProps = async (context) => { return { notFound: true, } }