gpt4 book ai didi

angular - 使用 try_files 指令禁用单个文件的缓存

转载 作者:太空狗 更新时间:2023-10-29 16:56:06 30 4
gpt4 key购买 nike

我以这种方式使用位置部分使用 nginx 为 Angular 2 应用程序提供服务:

location / {
try_files $uri $uri/ /index.html =404;
}

try_files 指令尝试在根目录中找到请求的 uri,如果找不到,则返回 index.html

如何禁用 index.html 文件的缓存?

最佳答案

找到一个使用 nginx 命名位置的解决方案:

location = / {
add_header Cache-Control no-cache;
expires 0;
try_files /index.html =404;
}

location / {
gzip_static on;
try_files $uri @index;
}

location @index {
add_header Cache-Control no-cache;
expires 0;
try_files /index.html =404;
}

关于angular - 使用 try_files 指令禁用单个文件的缓存,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41631399/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com