鍍金池/ 問答/Java  PHP  iOS  Linux  HTML/ 在本端寫網(wǎng)頁會有cache.....怎麼刪除?

在本端寫網(wǎng)頁會有cache.....怎麼刪除?

我在macos上寫網(wǎng)頁,用xampp架設(shè)的,css都會有cache...我試著在後面加上數(shù)字

css?v=1

又或者加入rand的數(shù)字...但是都還是會cache...請問要怎麼把這功能取消才好?有時候改好樣式,重新整理就好了,在重新整理個幾次又會出現(xiàn)舊版樣式

回答
編輯回答
陌璃
<filesMatch "\.(html|htm|js|css)$">
  FileETag None
  <ifModule mod_headers.c>
     Header unset ETag
     Header set Cache-Control "max-age=0, no-cache, no-store, must-revalidate"
     Header set Pragma "no-cache"
     Header set Expires "Wed, 11 Jan 1984 05:00:00 GMT"
  </ifModule>
</filesMatch>

轉(zhuǎn)自 Disable caching of assets in Apache
http://bertanguven.com/disabl...

2017年10月2日 04:06