gasparesganga/setinsnc.it/master/.htaccess - Htaccess File

gasparesganga/setinsnc.it/master/.htaccess

########## Compress text files ##########
AddOutputFilterByType DEFLATE text/text text/html text/plain text/xml text/css application/javascript application/json

########## Prevent html files cache ########## 
<FilesMatch ".(html|htm)$">
    FileETag None
    <ifModule mod_headers.c>
        Header unset ETag
        Header set Cache-Control "max-age=0, no-cache, no-store, must-revalidate"
        Header set Pragma "no-cache"
        Header set Expires "Fri, 31 Dec 1999 00:00:00 GMT"
    </ifModule>
</FilesMatch>

########## Rewrite & Redirects ##########
RewriteEngine On

### Redirect non-www to www
RewriteCond %{HTTP_HOST} !^www.
RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1 [R=301,L]

########## Invalid URLs ##########
ErrorDocument 403 http://www.setinsnc.it
ErrorDocument 404 http://www.setinsnc.it

On Github License

Files

Download PDF of Htaccess file
DEFLATE, HTTP_HOST, no-cache, Pragma

Comments

Apache