修改nginx配置為不緩存
www為項(xiàng)目的目錄
這問題困擾我很長時(shí)間了涧郊,總算解決了善已。
location /www/ {
? ? ? ? proxy_pass? ? ? http://xxxxx.cn;
? ? ? ? index index.html index.htm;
? ? ? ? root /root/www;
? ? ? ? add_header Last-Modified $date_gmt;
? ? ? ? add_header? ? ? Cache-Control 'no-store, no-cache, must-revalidate, proxy-revalidate, max-age=0';
? ? ? ? if_modified_since off;
? ? ? ? ? expires off;
? ? ? ? ? etag off;
? ? ? ? proxy_set_header? Host? ? ? ? ? ? $host;
? ? ? ? proxy_set_header? X-Real-IP? ? ? ? $remote_addr;
? ? ? ? proxy_set_header? X-Forwarded-For? $proxy_add_x_forwarded_for;
? }