使用应用程序缓存的问题

时间:2012-07-23 07:04:00

标签: html5 caching html5-appcache

您好我正在尝试使用应用程序缓存。据记载,我收到的提示如下:

This website() is asking to store data on your computer for offline use .

有3个选项:

1.Allow 2. Never for this website 3. Not now

在我的情况下,只有第三种选择有效。为什么?

这是我的html文件

<html manifest="example.appcache">
.......
</html>

1 个答案:

答案 0 :(得分:0)

这是因为你:

  • 要么在您的计算机上本地托管appcache文件,并且您的计算机没有向浏览器返回正确的MIME: text / cache-manifest
  • 或您的服务器(IIS / Apache)未正确配置以使用正确的MIME传递.appcaches文件。

对于Apache,您需要将此行添加到.htaccess

AddType text/cache-manifest .appcache

对于IIS,如果搜索“appcache IIS MIME”

,可以找到教程