我需要專家的幫助。混合兩個文件htaccess
我試圖將兩種文件的htaccess
第一:
<IfModule mod_mime.c>
<FilesMatch "\.html\.gz$">
ForceType text/html
FileETag None
</FilesMatch>
AddEncoding gzip .gz
AddType text/html .gz
</IfModule>
<IfModule mod_deflate.c>
SetEnvIfNoCase Request_URI \.gz$ no-gzip
</IfModule>
<IfModule mod_headers.c>
Header set Cache-Control 'max-age=300, must-revalidate'
</IfModule>
<IfModule mod_expires.c>
ExpiresActive On
ExpiresByType text/html A300
</IfModule>
第二:
<FilesMatch "\.(flv|gif|jpg|jpeg|png|ico|swf)$">
Header set Cache-Control "max-age=2592000"
</FilesMatch>
<FilesMatch "\.(js|css|pdf|txt)$">
Header set Cache-Control "max-age=604800"
</FilesMatch>
<FilesMatch "\.(html|htm)$">
Header set Cache-Control "max-age=43200"
</FilesMatch>
第一個文件所用的插件WP-supercache(worpress)
我想這
image files Cache-Control = 2592000
files as css e js Cache-Control = 604800
files htm had Cache-Control = 43200
但它想不失去插件,併爲此我尋求幫助的功能。
非常感謝你和原諒我的英語
維拉
找到一個解決辦法?如果你仍然有問題,請看我的答案,這可能是因爲Apache2中缺少一個模塊。 – 2009-12-10 23:16:49