Yes, it works without these two...
i did around 30 logins
and found these can be cached in vbulletin:
jpg|jpeg|png|gif|css|js
but if i cache php, html, i think its a problem in vbulletin, because the login form, the New topic, New reply buttons are cached not to be there, appears after page reload...
Not sure if developers can fix it anyhow, or there is any workaround to cache html etc and still have this working.
PS, these are OK to use:
Quote:
# ETAG - By removing the ETag header, you disable caches and browsers from being able to validate files
Header unset ETag
FileETag None
# 7 DAYS
<filesMatch ".(jpg|jpeg|png|gif|css|js)$">
Header set Cache-Control "max-age=604800, public"
</FilesMatch>
<IfModule mod_expires.c>
# Enable expirations
ExpiresActive On
# My favicon
ExpiresByType image/x-icon "access plus 1 month"
# Images
ExpiresByType image/gif "access plus 1 month"
ExpiresByType image/png "access plus 1 month"
ExpiresByType image/jpg "access plus 1 month"
ExpiresByType image/jpeg "access plus 1 month"
# CSS
ExpiresByType text/css "access 1 month"
# Javascript
ExpiresByType application/javascript "access plus 1 month"
</IfModule>
|