Home > FAQ > HTML5 Apps
FAQ
How to prevent caching of HTML5 contents
If you do not want to cache any http resources, you should use the following headers in the server response:
Cache-Control: no-cache, no-store, must-revalidate
Pragma: no-cache
Expires: 0
The method with “http-equiv” for HTML meta tags is not supported because they are made invalid due to HTML5 specifications.