Về công cụ này
Apache: ép HTTPS, fallback SPA về index.html, gzip và cache dài cho asset tĩnh.
.htaccess sẵn sàng dùng — xem nội dung, copy, hoặc tải về đúng tên file. Miễn phí, 100% trong trình duyệt.
Apache: ép HTTPS, fallback SPA về index.html, gzip và cache dài cho asset tĩnh.
# Force HTTPS
RewriteEngine On
RewriteCond %{HTTPS} !=on
RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
# SPA fallback — send unknown paths to index.html
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^ index.html [L]
# Gzip
<IfModule mod_deflate.c>
AddOutputFilterByType DEFLATE text/html text/css application/javascript application/json image/svg+xml
</IfModule>
# Cache static assets for a year
<IfModule mod_expires.c>
ExpiresActive On
ExpiresByType text/css "access plus 1 year"
ExpiresByType application/javascript "access plus 1 year"
ExpiresByType image/svg+xml "access plus 1 month"
</IfModule>
Apache: ép HTTPS, fallback SPA về index.html, gzip và cache dài cho asset tĩnh.
.htaccess sẵn sàng dùng — xem nội dung, copy, hoặc tải về đúng tên file. Miễn phí, 100% trong trình duyệt.