皆さん、次のリクエスト ヘッダーを別の形式に変換する必要があります。
RequestHeader set Date "%{TIME_WDAY}e"
%t 変数は次のようになります。
t=1367272677754275
Date= を次のようにします。
Date: Tue, 27 Mar 2007 19:44:46 +0000
これはどのように行われますか?
ありがとう!
皆さん、次のリクエスト ヘッダーを別の形式に変換する必要があります。
RequestHeader set Date "%{TIME_WDAY}e"
%t 変数は次のようになります。
t=1367272677754275
Date= を次のようにします。
Date: Tue, 27 Mar 2007 19:44:46 +0000
これはどのように行われますか?
ありがとう!
の文書化された機能では、これを行うことはできません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
。
ここでの正解は、AWS と GCS で必要な認証情報を追加するための mod_headers.c パッチです。