Apache 2.4日期表达式

时间:2017-03-11 17:01:03

标签: apache date expression local expr

Pre Apache 2.4我可以写这个

<!--#config timefmt="%Y%m%d %T" -->
<!--#if expr="($DATE_LOCAL > 20170311 00:00:01) && ($DATE_LOCAL < 20170316 00:00:01)"-->
Show this text during the specified Date/Time
<!--#endif-->

我尝试了几种不同的方式....但我似乎无法在Apache 2.4中使用它。

如果我打开“SSILegacyExprParser”,我可以让它工作......但是我希望在Apache 2.4中没有打开它的情况下使用它。

任何人都可以帮助使用正确的语法吗?

1 个答案:

答案 0 :(得分:0)

好的....我能够弄清楚......并且似乎在Apache 2.4中测试得很好

<!--#config timefmt="%Y%m%d %T" -->
<!--#if expr="(v('DATE_LOCAL') > '20170311 00:00:01') && (v('DATE_LOCAL') < '20170316 00:00:01')"-->
Show this text during the specified Date/Time
<!--#endif-->