I am creating a php codeigniter based administration backend which will be accessed only in google chrome browser. So, I thought of using HTML 5 application cache to reduce the loading time of images and js. But I have a problem now.
When I use in the head of the page, needed to use the application cache, my php page is also being cached. So, when I add a record in the application db, that new record is not shown on the listing page. Only old records are shown. This means chrome caches the html of the page also.
How can I prevent chrome from caching the html? in the NETWORK section of cache manifet I have * as an entry. If I go about adding the names of the pages which should never cache, then how can I add the pages for codeigniter?
For eg. http://staging.me.com/admin/login .How can I tell the manifest not to cache it?
Any help will be appreciated. Thanks.
Gaurav