I am trying to use appcache to cache most of my webpage resources files (js, css) to speed up webpage loading. However, the problem is that appcache also cache the current webpage. This brings problem that the viewed webpage is not up to date. How can I prevent appcache from caching the current page, but only the resources that I listed in manifest?
My manifest sample:
CACHE MANIFEST
# Version 1
CACHE:
# List of resources file (JS/ CSS) path
NETWORK:
*
http://*
https://*