网站首页不能缓存到浏览器,怎么解决呢
求助各位大神,现在问题是:只有网页响应头 没有缓存,其他页面都能缓存。
这张是首页的↓

# 首页缓存配置
location = / {
add_header Cache-Control "public";
expires 12h;
}
用这个不起作用,但是 location ~* \.html$ {} 这个就可以正常设置。
请问该怎么解决呢
求助各位大神,现在问题是:只有网页响应头 没有缓存,其他页面都能缓存。
这张是首页的↓

# 首页缓存配置
location = / {
add_header Cache-Control "public";
expires 12h;
}
用这个不起作用,但是 location ~* \.html$ {} 这个就可以正常设置。
请问该怎么解决呢