标签: reactjs nginx caching url-rewriting nginx-reverse-proxy
我正在使用nginx重写网址
location /ReeferUI/Reports/ { rewrite ^ /ReeferUI/index.html break; proxy_pass http://localhost:8083/ReeferUI; proxy_set_header Host $host; }
它工作正常,但是正在缓存我不需要的index.html。
如何防止浏览器缓存重定向网址?