|
|
|
RewriteEngine On
|
|
|
|
RewriteCond %{REQUEST_FILENAME} !-f
|
|
|
|
RewriteRule ^([^\.]+)$ $1.html [NC,L]
|
|
|
|
RewriteRule ^([^\.]+)$ $1.php [NC,L]
|
|
|
|
|
|
|
|
<IfModule mod_deflate.c>
|
|
|
|
# Compress HTML, CSS, JavaScript, Text, XML and fonts
|
|
|
|
AddOutputFilterByType DEFLATE application/javascript
|
|
|
|
AddOutputFilterByType DEFLATE application/rss+xml
|
|
|
|
AddOutputFilterByType DEFLATE application/vnd.ms-fontobject
|
|
|
|
AddOutputFilterByType DEFLATE application/x-font
|
|
|
|
AddOutputFilterByType DEFLATE application/x-font-opentype
|
|
|
|
AddOutputFilterByType DEFLATE application/x-font-otf
|
|
|
|
AddOutputFilterByType DEFLATE application/x-font-truetype
|
|
|
|
AddOutputFilterByType DEFLATE application/x-font-ttf
|
|
|
|
AddOutputFilterByType DEFLATE application/x-javascript
|
|
|
|
AddOutputFilterByType DEFLATE application/xhtml+xml
|
|
|
|
AddOutputFilterByType DEFLATE application/xml
|
|
|
|
AddOutputFilterByType DEFLATE font/opentype
|
|
|
|
AddOutputFilterByType DEFLATE font/otf
|
|
|
|
AddOutputFilterByType DEFLATE font/ttf
|
|
|
|
AddOutputFilterByType DEFLATE image/svg+xml
|
|
|
|
AddOutputFilterByType DEFLATE image/x-icon
|
|
|
|
AddOutputFilterByType DEFLATE text/css
|
|
|
|
AddOutputFilterByType DEFLATE text/html
|
|
|
|
AddOutputFilterByType DEFLATE text/javascript
|
|
|
|
AddOutputFilterByType DEFLATE text/plain
|
|
|
|
AddOutputFilterByType DEFLATE text/xml
|
|
|
|
|
|
|
|
# Remove browser bugs (only needed for really old browsers)
|
|
|
|
BrowserMatch ^Mozilla/4 gzip-only-text/html
|
|
|
|
BrowserMatch ^Mozilla/4\.0[678] no-gzip
|
|
|
|
BrowserMatch \bMSIE !no-gzip !gzip-only-text/html
|
|
|
|
Header append Vary User-Agent
|
|
|
|
</IfModule>
|
|
|
|
|
|
|
|
ErrorDocument 404 ../404.html
|
|
|
|
|
|
|
|
## EXPIRES CACHING ##
|
|
|
|
<IfModule mod_expires.c>
|
|
|
|
ExpiresActive On
|
|
|
|
ExpiresByType image/jpeg "access plus 1 year"
|
|
|
|
ExpiresByType image/gif "access plus 1 year"
|
|
|
|
ExpiresByType text/css "access plus 1 month"
|
|
|
|
ExpiresByType application/pdf "access plus 1 month"
|
|
|
|
ExpiresByType application/x-shockwave-flash "access plus 1 month"
|
|
|
|
ExpiresByType image/x-icon "access plus 1 year"
|
|
|
|
ExpiresByType text/javascript "access plus 1 month"
|
|
|
|
ExpiresByType text/x-javascript "access plus 1 month"
|
|
|
|
ExpiresByType application/javascript "access plus 1 month"
|
|
|
|
ExpiresByType application/x-javascript "access plus 1 month"
|
|
|
|
ExpiresDefault "access plus 1 days"
|
|
|
|
</IfModule>
|
|
|
|
## EXPIRES CACHING ##
|
|
|
|
|
|
|
|
Header unset ETag
|
|
|
|
FileETag None
|
|
|
|
|
|
|
|
<IfModule mod_headers.c>
|
|
|
|
Header set Strict-Transport-Security "max-age=31536000; preload" env=HTTPS
|
|
|
|
</IfModule>
|