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。このモジュールは、次の変数のみをサポートします (ドキュメントから):

%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

ここでの正解は、AWS と GCS で必要な認証情報を追加するための mod_headers.c パッチです。

于 2013-05-13T14:52:24.053 に答える