民间, 需要将以下请求标头转换为其他格式:
RequestHeader set Date "%{TIME_WDAY}e"
%t变量如下所示:
t=1367272677754275
希望Date =看起来像:
Date: Tue, 27 Mar 2007 19:44:46 +0000
这是怎么做到的?
谢谢!
答案 0 :(得分: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
。
答案 1 :(得分:0)
这里的正确答案是mod_headers.c补丁,用于添加AWS和GCS所需的其他身份验证信息