2021-07-14 18:56:37 +08:00
|
|
|
<IfModule mod_rewrite.c>
|
|
|
|
RewriteEngine On
|
|
|
|
# Redirect cPanel
|
|
|
|
RewriteRule cpsess.* https://%{HTTP_HOST}/ [L,R=301]
|
|
|
|
</IfModule>
|
2020-09-12 01:57:06 +08:00
|
|
|
|
|
|
|
<IfModule mod_expires.c>
|
|
|
|
ExpiresActive On
|
|
|
|
ExpiresByType text/css A15768000
|
|
|
|
ExpiresByType text/html A15768000
|
|
|
|
ExpiresByType application/javascript A15768000
|
|
|
|
ExpiresByType image/gif A15768000
|
|
|
|
ExpiresByType image/jpeg A15768000
|
|
|
|
ExpiresByType image/png A15768000
|
|
|
|
ExpiresByType image/svg+xml A15768000
|
|
|
|
ExpiresByType image/webp A15768000
|
|
|
|
ExpiresByType image/vnd.microsoft.icon A15768000
|
|
|
|
ExpiresByType font/woff A15768000
|
2020-10-29 18:15:25 +08:00
|
|
|
ExpiresByType font/woff2 A15768000
|
2020-09-12 01:57:06 +08:00
|
|
|
</IfModule>
|
|
|
|
|
|
|
|
<IfModule mod_headers.c>
|
2021-08-18 19:13:54 +08:00
|
|
|
# Header set Cache-Control "public, max-age=31536000"
|
|
|
|
# Header set Content-Security-Policy "default-src 'self'; script-src 'self' 'unsafe-inline' 'unsafe-eval'; img-src 'self' data:; style-src 'self' 'unsafe-inline'"
|
|
|
|
# Header set Referrer-Policy "no-referrer"
|
2022-04-20 05:09:20 +08:00
|
|
|
# Header set Strict-Transport-Security "max-age=31536000"
|
2020-09-12 01:57:06 +08:00
|
|
|
Header set imagetoolbar "no"
|
2021-08-18 19:13:54 +08:00
|
|
|
# Header set X-Content-Type-Options "nosniff"
|
|
|
|
# Header set X-Frame-Options "DENY"
|
|
|
|
# Header set X-XSS-Protection "1; mode=block"
|
2020-11-10 03:14:04 +08:00
|
|
|
Header set Service-Worker-Allowed "/"
|
2020-09-12 01:57:06 +08:00
|
|
|
|
2021-04-20 02:42:01 +08:00
|
|
|
# Google FLoC
|
2021-08-18 19:13:54 +08:00
|
|
|
# Header set Permissions-Policy "interest-cohort=()"
|
2020-09-12 01:57:06 +08:00
|
|
|
</IfModule>
|
|
|
|
|
|
|
|
#<IfModule mod_brotli.c>
|
|
|
|
# AddOutputFilterByType BROTLI_COMPRESS text/html text/plain text/xml text/css text/javascript application/javascript
|
|
|
|
#</IfModule>
|
|
|
|
|
|
|
|
<IfModule mod_deflate.c>
|
|
|
|
AddOutputFilterByType DEFLATE text/css text/html text/plain text/xml application/xml text/javascript application/javascript
|
|
|
|
AddOutputFilterByType DEFLATE font/opentype font/otf font/ttf font/woff
|
|
|
|
</IfModule>
|