apache中使用.htaccess設定網頁內容緩衝(js,css,圖片)

來源:互聯網
上載者:User

合理的設定網頁圖片、css/js檔案、html靜態網頁,甚至是動態網頁設定一定的緩衝時間不僅僅是為了節省伺服器開銷,更多的時候可以讓使用者感覺”網速更快“,合理設定緩衝是必要的,特別是圖片/css/js/txt/靜態html檔案等不經常變化的檔案。

在.htaccess檔案中加入下面的代碼就是設定網頁緩衝時間的哦, 如果是在開發調試的階段可以暫時關閉這個功能。

 代碼如下 複製代碼

<FilesMatch ".(flv|gif|jpg|jpeg|png|ico|swf|css|txt|pdf)$">
Header set Cache-Control "max-age=36000"
</FilesMatch>

這段代碼設定的是緩衝10個小時,可以根據自己的需要做修改。

注意:做任何改動前請先備份網站資料域.htaccess檔案。

編輯完畢後儲存檔案。代碼中“max-age”參數的值為36000(秒),因此圖片緩衝和Flash內容緩衝在瀏覽器中保留10小時。

相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.