我正在使用 nginx 重写 URL
location /ReeferUI/Reports/ {
rewrite ^ /ReeferUI/index.html break;
proxy_pass http://localhost:8083/ReeferUI;
proxy_set_header Host $host;
}
它运行正常,但它缓存了我不想要的 index.html。
如何防止浏览器缓存重定向 URL?
我正在使用 nginx 重写 URL
location /ReeferUI/Reports/ {
rewrite ^ /ReeferUI/index.html break;
proxy_pass http://localhost:8083/ReeferUI;
proxy_set_header Host $host;
}
它运行正常,但它缓存了我不想要的 index.html。
如何防止浏览器缓存重定向 URL?