1

伙计们,需要将以下请求标头转换为不同的格式:

RequestHeader set Date "%{TIME_WDAY}e"

%t 变量如下所示:

t=1367272677754275

希望 Date= 看起来像:

Date: Tue, 27 Mar 2007 19:44:46 +0000

这是怎么做到的?

谢谢!

4

2 回答 2

1

您无法使用mod_headers. 此模块仅支持以下变量(来自doc):

%t          The time the request was received in Universal Coordinated Time since the epoch (Jan. 1, 1970) measured in microseconds. The value is preceded by t=.
%D          The time from when the request was received to the time the headers are sent on the wire. This is a measure of the duration of the request. The value is preceded by D=. The value is measured in microseconds.
%{FOOBAR}e  The contents of the environment variable FOOBAR.
%{FOOBAR}s  The contents of the SSL environment variable FOOBAR, if mod_ssl is enabled.

除非您一直想将环境变量设置为当前日期并使用它,否则mod_env我建议您使用mod_rewrite.

于 2013-05-11T15:14:42.113 回答
0

这里的正确答案是一个 mod_headers.c 补丁,用于添加 AWS 和 GCS 所需的额外身份验证信息

于 2013-05-13T14:52:24.053 回答