如何将字符串替换为 mod_substitute apache 中的当前时间戳?
How to substitute a string to current timestamp in mod_substitute apache?
我想用当前时间戳(以毫秒为单位)替换字符串,例如
Substitute s|MyString|timestamp|ni
如何在我的 .htaccess 文件中使用 mod_substitute.c 来实现?
它是 substitute 和 ssi include 的组合,但有效
AddOutputFilterByType SUBSTITUTE text/html
Substitute 's/magical-string-here/<!--#config timefmt="%s" --><!--#echo var="DATE_LOCAL" -->/'
Options +Includes
AddType text/html .php # or what have you
AddOutputFilterByType INCLUDES text/html
我想用当前时间戳(以毫秒为单位)替换字符串,例如
Substitute s|MyString|timestamp|ni
如何在我的 .htaccess 文件中使用 mod_substitute.c 来实现?
它是 substitute 和 ssi include 的组合,但有效
AddOutputFilterByType SUBSTITUTE text/html
Substitute 's/magical-string-here/<!--#config timefmt="%s" --><!--#echo var="DATE_LOCAL" -->/'
Options +Includes
AddType text/html .php # or what have you
AddOutputFilterByType INCLUDES text/html