Netlify でリダイレクトの設定をする

Netlify でリダイレクトを設定する方法を調べました。

To configure redirects and rewrite rules for your Netlify site, add a _redirects file to the root of your published site. You can also add redirect rules to your netlify.toml file.

Redirects | Netlify

_redirects ファイルか、 netlify.toml ファイルを作って、そこに設定すればいいみたいです。

# Redirects from what the browser requests to what we serve
/home              /
/blog/my-post.php  /blog/my-post
/news              /blog
/google            https://www.google.com

Redirects | Netlify

こんな設定ファイルになるみたいです。 左側が元、右側が先ですね。

このファイルをサイトのルートに保存すればいいみたいです。