My netlify site is live but other path is white screen

site name.: https://comforting-biscotti-7ac181.netlify.app/

My homepage works, redirects work but other pages don’t work, white screen
I have netlify.toml file
[[redirects]]
from = “/*”
to = “/index.html”
status = 200

Try to go to
https://comforting-biscotti-7ac181.netlify.app/stickers

You will see the page pop up for a while and then a white screen

x-nf-request-id: 01JH0A6PA6K0R9DYQCZTEBACCW

@vasawat77 The proxy is working, you’re seeing a white screen due to your own site code.

If you try to go to /test
https://comforting-biscotti-7ac181.netlify.app/test

Then look at the developer tools in your browser, you will see…

The page has loaded successfully (it would be a 404 if the proxy didn’t exist):

Viewing the page source also shows the same HTML as on the root:

The console contains a warning because your app knows the route does not exist:

screenshot-20250108-001058

With the /sticker route you have these errors in the console:

image

You will need to debug your app.

1 Like