Can I make a custom error page in netlify like the other hosting services?
Hi @Dev.LynHan
Welcome to the community!
I believe you will find this section of the documentation helpful: Redirect options | Netlify Docs
welcome to the community
yes, you can, this is how i do it for example:
# My redirect rules
# ...
[[redirects]]
from = "/*"
to = "/page/404/index.html"
status = 404
force = false
# My other rules
# ... headers, build options, etc. ...
the order is important !
hope this helped
1 Like
Thanks for a good reply!!
1 Like