如何在 XAMPP 服务器中启用 GZip 压缩
我正在使用 xampp 服务器最新版本来提高我的网页性能。
我必须在 XAMPP 中启用 Gzip。怎么办呢?
I am using xampp sever latest version to improve my web page performance.
I have to enable Gzip in XAMPP. How can it be done?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
您可以通过在 apache 中设置适当的指令来进行压缩。
它会取消 apache conf 文件中以下行的注释:
C:\xampp\apache\conf\httpd.conf(
如果您的 xampp 安装文件夹是 C:\xampp)。
这些是首先要取消注释的行:
也就是说,如果它们前面有#,则应该将其删除!
然后将其放在 httpd.conf 文件的末尾:
You do compression by setting appropriate directive in apache.
It goes uncommenting the following lines in your apache conf file:
C:\xampp\apache\conf\httpd.conf
if your xampp installation folder is C:\xampp.
and these are the lines to be uncommented first:
that is to say, if they have # before them, you should remove them!
Then put this at the end of your httpd.conf file:
上面所说的一切都不适用于我的 XAMPP 版本 1.8.1 (php 5.4.7)。
唯一有效的方法是将 php.ini 文件的这些行设置为“On”而不是“Off”:
Everything what is said above does not work on my XAMPP version 1.8.1 (php 5.4.7).
The only thing that works is to put on "On" instead of "Off" these line of the php.ini file:
查找 apache\conf\httpd.conf
取消注释以下行(删除 #)
某些版本可能需要您注释掉以下行。
最后将此行添加到您的 .htaccess 文件中。
Find apache\conf\httpd.conf
uncomment the following line(remove #)
some versions may require you to comment out the following lines instead.
finally add this line to your .htaccess file.
不知道为什么你有这个代码:
但这对我不起作用,它在 Apache/2.4.3 (Win32) 上返回 APACHE 错误:
我必须使用:
Not sure why you have this code:
But that didn't work for me, it returned an APACHE error on Apache/2.4.3 (Win32):
I Had to use: