我有xsl文件,大小约12kb,我想压缩它。 有没有办法压缩xsl文件
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="html"/>
<xsl:template match="/page1">
<form name="form1" style="margin:0px;padding:0px" action="action.php" method="post" onsubmit="return checkData();">
<xsl:variable name="name" select="op1 />
<xsl:variable name="name" select="op2 />
</form>
</xsl:template>
</xsl:stylesheet>
答案 0 :(得分:0)
这取决于您的服务器。在Apache上,您需要在httpd.conf文件中激活mod_gzip。谷歌搜索mod_gzip将提供大量有关启用它的指南。
如果您无法编辑根Apache配置,则有两种选择。如果XML文件是静态的,请手动压缩它,将文件命名为foo.xsl.gz,如果尚未激活,请打开该目录的MultiViews
文件中的.htaccess
。如果XML文件不是静态的,或者你甚至不能使用.htaccess,那么最后的办法是将XML文件更改为PHP脚本,并在代码中包装ob_ *命令以吐出XML。