Scusami se ti chiedo ancora una cosa...
vorrei sapere se il mio file htaccess lato cache e simili secondo te va bene
<IfModule mod_expires.c>
ExpiresActive On
ExpiresDefault "access plus 1 week"
<FilesMatch "\.(gif|jpg|jpeg|png|swf)$">
Header set Cache-Control "public, must-revalidate"
</FilesMatch>
#NEVER CACHE
<FilesMatch "\.(html|htm|php|cgi|pl)$">
Header set Cache-Control "max-age=0, private, no-store, no-cache, must-revalidate"
</FilesMatch>
AddOutputFilterByType DEFLATE text/html text/plain text/xml text/css application/javascript application/x-javascript application/rss+xml application/atom_xml text/javascript
Header unset ETag
</IfModule>