Next.js Discord

Discord Forum

301 redirect instead of 302

Answered
British Shorthair posted this in #help-forum
Open in Discord
British ShorthairOP
Hi there, how do I redirect 301 (permanently) with NextResponse.redirect() instead of 302.
Answered by Ray
or NextResponse.redirect('url', {status: 302})
View full answer

3 Replies

Response.redirect('url', 302)
or NextResponse.redirect('url', {status: 302})
Answer
British ShorthairOP
@Ray thanks