I have a manifest that looks somethin like this:
CACHE MANIFEST
# e4a75fb378cb627a0d51a80c1cc5684c2d918d93e267f5854a511aa3c8db5b1a
/a/application.js
/a/application.css
NETWORK:
*
FALLBACK:
/ /offline/redirect
The issue is that my /404.html and /500.html pages (that are obviously served up with a response code of 404 and 500) are triggering the fallback. They both act just as if the server is offline.
My question is twofold:
- Why does /404.html trigger the fallback when /events doesn't?
- How can I allow /404.html and /500.html to not trigger the fallback while still allowing / to
trigger it.
For what it's worth, I've already tried this:
NETWORK:
*
/404.html
/500.html
... however since those pages are served w/ a non-200 response code, it triggers the app cache error callback and the cache isn't saved.
Thanks!