Gerador .htaccess
Incentivar
Forçar HTTPS
Redirecionar para www
Habilitar Gzip
Cache de Browser
Redirects (origem destino, um por linha)
/old-page /new-page /blog /news
# Generated by CS Toolbox # Force HTTPS RewriteEngine On RewriteCond %{HTTPS} off RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301] # Enable Gzip <IfModule mod_deflate.c> AddOutputFilterByType DEFLATE text/html text/css application/javascript application/json image/svg+xml </IfModule> # Browser Cache <IfModule mod_expires.c> ExpiresActive On ExpiresByType image/jpg "access plus 1 year" ExpiresByType image/png "access plus 1 year" ExpiresByType text/css "access plus 1 month" ExpiresByType application/javascript "access plus 1 month" </IfModule> # Redirects Redirect 301 /old-page /new-page Redirect 301 /blog /news
Copiar .htaccess