I am trying to use appcache to cache most of my web page resource resources (js, css) in order to speed up the loading of the web page. However, the problem is that appcache also caches the current web page. This causes the webpage you are viewing to not refresh. How can I prevent caching of caching of the current page, but only the resources that I listed in the manifest?
My example manifest:
CACHE MANIFEST
CACHE:
NETWORK:
*
http://*
https://*
source
share