Netlify reload 404 error resolved
Dushyant Pathak

Dushyant Pathak @dkp1903

About: JavaScript | Java

Location:
India
Joined:
Oct 12, 2019

Netlify reload 404 error resolved

Publish Date: May 25 '20
7 1

Netlify is a popular website that can be used to host your websites/web apps.

However, here is a possible error that you might see when you happen to reload your netlify page.

Alt Text

Here's an easy hack:

  • Go to the folder which is published to netlify.
  • Create a new file called netlify.toml.
  • Copy and paste the following code:
[[redirects]]
from = "/*"
to = "/index.html"
status = 200
Enter fullscreen mode Exit fullscreen mode

Note here, it doesn't matter if you don't have an index.html page in your web app. This just works.

Cheers, and happy coding.

Comments 1 total

  • Shubham
    ShubhamMar 30, 2021

    Now you can place the file in root directory of your project. And it will automatically handle redirection.

Add comment