gpt4 book ai didi

Nginx - 如何在使用 try_files 时为 index.html 添加标题

转载 作者:行者123 更新时间:2023-12-04 05:23:15 32 4
gpt4 key购买 nike

我有以下配置(对于 Angular 应用程序):

location / {
try_files $uri /index.html;
add_header "Cache-Control" "no-cache" ;
}

现在我只想为 index.html 添加该标题,但不适用于任何其他文件。怎么做?

最佳答案

using the “=” modifier it is possible to define an exact match of URI and location. If an exact match is found, the search terminates.



所以你可以使用这个配置:
location =/index.html {
add_header "Cache-Control" "no-cache" ;
}
location / {
rewrite ^(.*) /index.html break;

}

你可以在

different in break and last

Directives with the "=" prefix

关于Nginx - 如何在使用 try_files 时为 index.html 添加标题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43888958/

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