ebd364e392
* Add new fields to API route context * Add props and redirect * Pass custom redirect status code * Correctly pass props in api routes * Add better docs * Add test * Fix build * Add constants file * Add links to jsdoc * Workaround lint issue * Thanks Chris Co-authored-by: Chris Swithinbank <swithinbank@gmail.com> * Missed one doc change Co-authored-by: Chris Swithinbank <swithinbank@gmail.com> * Add more detail to the changesets * Strict redirect status type Co-authored-by: Chris Swithinbank <swithinbank@gmail.com> Co-authored-by: Matthew Phillips <matthew@skypack.dev>
340 B
340 B
astro |
---|
minor |
Support passing a custom status code for Astro.redirect
New in this minor is the ability to pass a status code to Astro.redirect
. By default it uses 302
but now you can pass another code as the second argument:
---
// This page was moved
return Astro.redirect('/posts/new-post-name', 301);
---