Html5缓存清单不能正常工作



我开始使用离线webapps。

我为一个测试站点做了一个缓存清单,但我不能让它工作。

我试着在离线时从index.html重定向到offline.html但它只是下载index.html并显示它

这是我的缓存清单:
CACHE MANIFEST
FALLBACK:
./ ./offline.html

在index.html中只有一行:

Hello this is a test, you are online

这是offline.html

<html manifest='cmanifest'>
<head></head>
<body>you are offline now</body>
</html>

现在我有这个问题:

我添加了一个链接,该链接应该在一个站点在线时访问另一个站点离线时访问,但它总是加载online.html。

我的index.html现在是这样的:

<html>
<a href='online.html'>Ir a online.html</a>
</html>

我的缓存是这样的:

CACHE MANIFEST
#v2
FALLBACK:
./online ./offline.html
NETWORK:
*

好吧,我自己找到解决办法了。

我漏了这行:

NETWORK:
*

相关内容

  • 没有找到相关文章

最新更新