I have a codeigniter site and i want to store the following files via appcache: jquery.js, style.css and offline.html (fallback).
So, naturally, manifest file looks like the one below. my manifest file is called, well, manifest.appcache.
CACHE MANIFEST:
jquery.js
style.css
NETWORK:
*
FALLBACK:
/ /offline.html
i open my site and i do see that the .js, .css and .html files are downloaded. but then i see that the page http://mysite.com/home (default route in codeigniter) is also download. what gives? i did not include this in my manifest file.