Hi,
I’m using Netlify.
Currently, all the pages on the site are accessible with and without index.html at the end of the URL.
I turned on pretty URLs, but that didn’t work.
I then added this code:
[[redirects]]
from = "/*/index.html"
to = "/:splat:"
status = 200
force = false
Even that’s not working. If I add true to force, it shows a 404 error, but it won’t strip index.html off of the URLs.
What should I do?