添加過期標頭以提高使用 .htaccess 的頁面的性能 (Add expire header to improve the performance of page using .htaccess)


問題描述

添加過期標頭以提高使用 .htaccess 的頁面的性能 (Add expire header to improve the performance of page using .htaccess)

p>所以我不能依賴那個插件,但是我在 .htaccess 中添加的 3 個代碼真的很好,但有一個例外,我真的不知道如何解決這個問題。</p>

比如說我今天早上和白天訪問了我的網站 http://applesiam.com有 3 個新帖子。如果我不真的重新加載頁面,我仍然會從早上看到那個頁面。

所以這真的讓我感到困惑。

我應該改變什麼才能不緩存實際主頁,因此除了圖片和其他內容外,它將被更新。

真的不知道如何解決這個問題。</p>

比如說我訪問了我的網站 http://applesiam.com 今天早上和白天我有 3 個新帖子。如果我不真的重新加載頁面,我仍然會從早上看到那個頁面。

所以這真的讓我感到困惑。

我應該改變什麼才能不緩存實際主頁,因此除了圖片和其他內容外,它將被更新。

真的不知道如何解決這個問題。</p>

比如說我訪問了我的網站 http://applesiam.com 今天早上和白天我有 3 個新帖子。如果我不真的重新加載頁面,我仍然會看到早上的那個。

所以這真的讓我感到困惑。

我應該改變什麼才能不緩存實際主頁,因此除了圖片和其他內容外,它將被更新。


參考解法

方法 1:

I'm not sure if this is going to work but I found this which is going to solve the behaviour of the browser cache the file that update dynamically

# Force no caching for dynamic files
<filesMatch "\.(php|cgi|pl|htm)$">
ExpiresActive Off
Header set Cache‑Control "private, no‑cache, no‑store, proxy‑revalidate, no‑transform"
Header set Pragma "no‑cache"
</filesMatch>

(by AliAli)

參考文件

  1. Add expire header to improve the performance of page using .htaccess (CC BY‑SA 2.5/3.0/4.0)

#mod-expires #performance #.htaccess






相關問題

lighttpd 中靜態圖片的 expires.url 配置 (expires.url configuration for static images in lighttpd)

mod_expires.c 和 mod_headers.c 根據 google pagespeed 見解無法正常工作 (mod_expires.c and mod_headers.c not working according to google pagespeed insights)

Apache FilesMatch - 匹配正則表達式中的文件夾 (Apache FilesMatch - matching a folder in the regular expression)

mod_expires 為 3## 狀態碼發送 Cache-Control 標頭 (mod_expires sending Cache-Control headers for 3## status codes)

Apache:如何在未安裝 mod_expires 的情況下將 Expires 標頭添加到文件中 (Apache: How to add Expires headers to files without mod_expires installed)

PHP session_start() 覆蓋 HTTP Expires 標頭 (PHP session_start() overwrites HTTP Expires header)

添加過期標頭以提高使用 .htaccess 的頁面的性能 (Add expire header to improve the performance of page using .htaccess)

使用 apache mod_expires 緩存 php,php 文件的 mime 類型是什麼? (Use apache mod_expires to cache php, what is a mime type for php files?)







留言討論