网站链接是 http://justairbrush.com/
网站建立在纯PHP没有框架。没有wordpress,没有joomla等。
我在htaccess
中尝试使用以下代码进行压缩# DEFLATE compression
<IfModule mod_deflate.c>
# Set compression for: html,txt,xml,js,css
AddOutputFilterByType DEFLATE text/html text/plain text/xml application/xml application/xhtml+xml text/javascript text/css application/x-javascript
# Deactivate compression for buggy browsers
BrowserMatch ^Mozilla/4 gzip-only-text/html
BrowserMatch ^Mozilla/4.0[678] no-gzip
BrowserMatch bMSIE !no-gzip !gzip-only-text/html
</IfModule>
# END DEFLATE
这个也是
<IfModule mod_deflate.c>
AddOutputFilterByType DEFLATE application/x-javascript application/javascript text/javascript text/css text/html text/xml
</IfModule>
但是没有一个代码似乎提供任何压缩
我用来检查压缩的工具是 http://www.gidnetwork.com/tools/gzip-test.php http://www.whatsmyip.org/http-compression-test/ http://www.feedthebot.com/tools/gzip/in.php?gzip_url=http%3A%2F%2Fwww.artekaos.com%2F
所有工具都会返回相同的否定结果。
我还检查了标题中的http_accept_encoding gzip deglate设置 这似乎是正确的。
请提供一些解决方案。