nginx及apache不快取配置

2021-08-27 15:44:19 字數 582 閱讀 5404

今天碰見乙個問題,我們要對頁面實際展現量做乙個統計,也不想給統計的pvcall.png加上時間戳,其實用nginx和apache自己的配置即可解決此問題,提供下apache不快取配置和nginx不快取配置的設定。

apache:

首先確定配置檔案httpd.conf中確已經載入mod_headers模組。若沒有新增下面這段話

loadmodule headers_module modules/mod_headers.so

我們可以根據檔案型別來讓瀏覽器每次都從伺服器讀取,這裡測試用css、

js、swf、php、html、htm這幾種檔案。

header set cache-control "private, no-cache, no-store, proxy-revalidate, no-transform"

header set pragma "no-cache"

nginx:

location ~ .*\.(css|js|swf|php|htm|html )$

nginx及apache不快取配置

今天碰見乙個問題,我們要對頁面實際展現量做乙個統計,也不想給統計的pvcall.png加上時間戳,其實用nginx和apache自己的配置即可解決此問題,提供下apache不快取配置和nginx不快取配置的設定。apache 首先確定配置檔案httpd.conf中確已經載入mod headers模組...

apache和nginx配置不快取檔案

apache 首先確定配置檔案httpd.conf中確已經載入mod headers模組。loadmodule headers module modules mod headers.so 我們可以根據檔案型別來讓瀏覽器每次都從伺服器讀取,這裡測試用css js swf php html htm這幾種...

apache 防盜煉,快取,不快取的配置

如何防盜煉呢?以上配置中 就是實現這個功能,但需要開啟 apache 的 loadmodule rewrite module modules mod rewrite.so 功能expiresactive on expiresbytype image jpeg access plus 1 month ...