Skip to content

forbidden.js

Source URL: https://nextjs.org/docs/app/api-reference/file-conventions/forbidden

This feature is currently experimental and subject to change, it is not recommended for production.

The forbidden file is used to render UI when the forbidden function is invoked during authentication. Along with allowing you to customize the UI, Next.js will return a 403 status code.

import Link from 'next/link'
export default function Forbidden() {
return (
<div>
<h2>Forbidden</h2>
<p>You are not authorized to access this resource.</p>
<Link href="/">Return Home</Link>
</div>
)
}
import Link from 'next/link'
export default function Forbidden() {
return (
<div>
<h2>Forbidden</h2>
<p>You are not authorized to access this resource.</p>
<Link href="/">Return Home</Link>
</div>
)
}

forbidden.js components do not accept any props.

VersionChanges
v15.1.0forbidden.js introduced.
  • forbidden
    • API Reference for the forbidden function.