优化聊天室首屏和在线名单性能

This commit is contained in:
2026-04-25 03:14:07 +08:00
parent c410897231
commit 128b52d0aa
8 changed files with 166 additions and 27 deletions
+13
View File
@@ -23,3 +23,16 @@
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [L]
</IfModule>
<IfModule mod_setenvif.c>
SetEnvIf Request_URI "^/build/assets/" vite_hashed_asset=1
</IfModule>
<IfModule mod_headers.c>
# Vite 构建产物文件名带 hash,可以长期缓存;普通 public 资源保持默认缓存策略。
Header set Cache-Control "public, max-age=31536000, immutable" env=vite_hashed_asset
</IfModule>
<IfModule mod_deflate.c>
AddOutputFilterByType DEFLATE text/plain text/css text/javascript application/javascript application/json application/xml image/svg+xml
</IfModule>