We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When reloading on netlify it shows Page not found. This can be solved using redirects file in the public folder
The text was updated successfully, but these errors were encountered:
What the content of the file should look like:
I tried this, but it isn't working /ecommerce https://lek-dashboard.netlify.app/ecommerce 301
/ecommerce https://lek-dashboard.netlify.app/ecommerce 301
Sorry, something went wrong.
/* /index.html 200
Make a file named _redirects in the public folder and add the above content in it. @khalidfasely
Thank you, I tried this, and it worked for me: create a netlify.toml on the public folder with this content
[[redirects]] from = "/*" to = "/index.html" status = 200
then run build @Priyanshu85
No branches or pull requests
When reloading on netlify it shows Page not found. This can be solved using redirects file in the public folder
The text was updated successfully, but these errors were encountered: