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.
想在我的 php 站点上集成 gzip 压缩,但是在我实现代码时 ob_start("ob_gzhandler"); 尽管服务器中存在该页面,但它给了我一个错误“此网页不可用”,服务器中也启用了 gzip 压缩。请提出一种实施方法。
试试这个,希望对你有帮助
在你的索引页的顶部把它
ob_start("ob_gzhandler");
你需要做的更多。只需在您的 .htaccess 中写下
<IfModule mod_deflate.c> AddOutputFilterByType DEFLATE text/text text/html text/plain text/xml text/css application/x-javascript application/javascript </IfModule>