Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法实时显示 htaccess 指令的结果?例如:
RewriteCond %{DOCUMENT_ROOT}
是否有任何指令可以放在 htaccess 中以显示%{DOCUMENT_ROOT}值?
%{DOCUMENT_ROOT}
我知道这可以通过正确地址中的 PHP 脚本来完成,但我想知道它是否也可以在 htaccess 中实现?
尝试这个
RewriteEngine On RewriteBase / RewriteRule (.*) /$1?docroot=%{DOCUMENT_ROOT} [L,QSA]
没有可能对此进行测试,但应该可以
来自Apache 2.2 文档
除了纯文本之外,Substition 字符串还可以包括 对 RewriteRule 模式的反向引用 ($N) 对最后匹配的 RewriteCond 模式的反向引用 (%N) 服务器变量,如规则条件测试字符串 (%{VARNAME}) 映射函数调用 (${mapname:key|default})
除了纯文本之外,Substition 字符串还可以包括