1

Is there any way to display htaccess directives results in real time? For example:

RewriteCond %{DOCUMENT_ROOT}

Are there any instructions that can be placed inside htaccess to display %{DOCUMENT_ROOT} value?

I know that can be accomplished with a PHP script in the right address, but I was wondering if it's also possible inside htaccess?

4

1 に答える 1

2

これを試して

RewriteEngine On
RewriteBase /
RewriteRule (.*) /$1?docroot=%{DOCUMENT_ROOT} [L,QSA]

これをテストする可能性はありませんでしたが、動作するはずです

Apache 2.2のドキュメントから

プレーン テキストに加えて、Substition 文字列には以下を含めることができます。

  • RewriteRule パターンへの後方参照 ($N)
  • 最後に一致した RewriteCond パターンへの後方参照 (%N)
  • ルール条件のテスト文字列のようなサーバー変数 (%{VARNAME})
  • マッピング関数呼び出し (${mapname:key|default})
于 2012-11-28T22:07:50.447 に答える