浏览器会缓存重写的 URL。如何阻止它被缓存?

浏览器会缓存重写的 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?

相关内容