React Routers Not Working with Netlify
Lets Fix this in 3 Steps !!!

I am a software engineer intern from the UK and I have worked with multiple technologies like MERN stack, JavaScript, Python etc. I also like to contribute to open source on Github.
Table of Contents:
Introduction
Solution
Reference
Introduction
When you’ve deployed your React.js website to Netlify and opened the link, you see that any attempt in redirecting to another page is met with an error like this:

Solution
Follow these 3 simple steps to fix this:
Step 1: Go to your react app’s
publicfolder and create a plain file called_redirectsStep 2: Add the following code into the
_redirectsfile:/* /index.html 200Step 3: Deploy your app again and it should fix the Netlify error




