Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
SVGZ 格式仅在我在 Google Chrome 上本地测试时才有效。(不适用于其他浏览器)虽然它适用于 svg。否则,在服务器上,它不起作用。我试图用这些行添加一个 .htaccess 文件
AddType image/svg+xml svg AddType image/svg+xml svgz AddEncoding x-gzip .svgz
但它仍然不起作用。尝试了内联和背景,结果相同。
这是我的测试的链接
我在多个背景(带纹理)中尝试了它,并在页面底部内联。
我被困住了。
httpd.conf & mime.types
httpd.conf位于apache/conf/httpd.conf。确保这两行存在:
httpd.conf
apache/conf/httpd.conf
AddType image/svg+xml svg svgz AddEncoding gzip svgz
或者,您只能在同一目录中添加该AddEncoding行并处理 mime 类型。mime.types确保存在以下行:
AddEncoding
mime.types
image/svg+xml svg svgz
重新启动 Apache,然后清除浏览器的缓存、重新加载并检查标头。