是否可以在xml中设置元标记,如<meta http-equiv="Cache-Control" content="max-age=120"/>
我必须从我的服务器获取xml feed并设置缓存控制最大时间,下次copernica email marketing不会向我的服务器发送xml feed请求并从缓存中获取xml。
答案 0 :(得分:0)
没有。对于一般XML文件,没有等效的http-equiv
。
某些特定格式包括此内容(例如:RSS feed: how to recommend an update interval?),但对于通用解决方案,请在HTTP级别设置Cache-Control
标头。您可以使用.htaccess
;例如,请参阅Implementing cache control using .htaccess on Apache server。