WEBSITE TOOLS MENU
htaccess
htaccess Generator
beamsup.com generate htaccess
aleydasolis
perishablepress.com Allerlei tips voor htaccess
============================================================================
De juist htaccess voor non www en https
============================================================================
Options +FollowSymLinks
RewriteEngine On
RewriteCond %{HTTP_HOST} ^www.website.nl [NC]
RewriteRule ^(.*)$ http://website.nl/$1 [L,R=301]
RewriteEngine on
RewriteCond %{HTTPS} off
RewriteRule ^(.*) https://%{HTTP_HOST}%{REQUEST_URI} [R=301]
============================================================================
//Prevent viewing of .htaccess file
order allow,deny
deny from all
//Prevent directory listings
Options All -Indexes
=============================================================================
//Caching schema 1 jaar
Header set Cache-Control "public, max-age=1928448000"
============================================================================
Cache-Control: max-age=2628000. public
2628000 is een maand
----------------------------------------------------------------------------
## EXPIRES CACHING ##
ExpiresActive On
ExpiresByType image/jpg "access 1 year"
ExpiresByType image/jpeg "access 1 year"
ExpiresByType image/gif "access 1 year"
ExpiresByType image/png "access 1 year"
ExpiresByType text/css "access 1 month"
ExpiresByType text/html "access 1 month"
ExpiresByType application/pdf "access 1 month"
ExpiresByType text/x-javascript "access 1 month"
ExpiresByType application/x-shockwave-flash "access 1 month"
ExpiresByType image/x-icon "access 1 year"
ExpiresDefault "access 1 month"
## EXPIRES CACHING ##
----------------------------------------------------------------------------
# One year for image files
Header set Cache-Control "max-age=31536000, public"
# One month for css and js
Header set Cache-Control "max-age=2628000, public"
------------------------------------------------------------------------------
'bublic','private' of 'no-store'
=========================================================================
'link rel="canonical" href="https://www.domeinnaam.nl/voorbeeld"/
WEBSITE TOOLS MENU