1

我尝试.htaccessxml模板中使用以利用浏览器缓存。这是代码-

  <IfModule mod_expires.c>
  ExpiresActive On
  ExpiresByType image/jpg "access 1 year"
  ExpiresByType text/css "access 1 month"
  ExpiresByType text/html "access 1 month"
  ExpiresByType text/x-javascript "access 1 month"
  ExpiresByType image/x-icon "access 1 year"
  ExpiresDefault "access 1 month"
  </IfModule>

xml 给出错误 -与元素类型“IfModule”关联的属性名称“mod_expires.c”必须后跟“=”字符。我该如何纠正它?

4

1 回答 1

2

你误解了一些没有 xml 标签的东西,即使它看起来像是一个所谓的指令。您不能将其解析为 xml。

另请参阅有关 if 指令的文档:http ://httpd.apache.org/docs/current/mod/core.html#ifmodule

于 2013-09-05T16:24:46.240 回答