0

我有一个大小约为 12kb 的 xsl 文件,我想压缩它。有没有办法压缩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>
4

1 回答 1

0

这取决于您的服务器。在 Apache 上,您需要在 httpd.conf 文件中激活 mod_gzip。谷歌搜索 mod_gzip 将提供大量启用它的指南。

如果您无法编辑您的根 Apache 配置,则有两种选择。如果 XML 文件是静态的,请手动压缩它,将文件命名为 foo.xsl.gz,如果尚未激活,请在该目录MultiViews的文件中打开。.htaccess如果 XML 文件不是静态的,或者您甚至无法使用 .htaccess,最后的办法是将 XML 文件更改为 PHP 脚本,然后将您的 ob_* 命令包裹在代码周围以输出 XML。

于 2012-11-15T08:56:01.020 回答