Let's say I have a website with following pages:
www.server.com/index.php
www.server.com/anotherPage.php
www.server.com/css/style_for_index.css
www.server.com/css/style_for_anotherPage.css
Assuming, I am visiting www.server.com/index.php
:
When using .appcache manifest in the <HTML>
tag, I understand that every associated file of this page is automatically cached anyway.
But if I wanted to load, at the same time, www.server.com/anotherPage.php
, then I would also have to load www.server.com/css/style_for_anotherPage.css
in the CACHE
section of the manifest.appcache
file.
What I don't understand is if I would also have to include the background-images from www.server.com/css/style_for_anotherPage.css
into the manifest.appcache
file.