我正在尝试使用共享主机调试 .htaccess 文件。我遇到过http://blog.tolleiv.de/2010/01/debugging-mod_rewrite/。我想使用提到的技术来回显传入的查询字符串
到目前为止,我有:
RewriteEngine on
RewriteCond %{QUERY_STRING} !vardump
RewriteRule (.*) http://mydomain.con/$1?vardump&reqhost=%{QUERY_STRING} [R=301,L,QSA]
当我把它放在我的 public_html/.htacess 中时,我得到了
http://mydomain.com/?vardump&reqhost=
在我的浏览器栏中。知道为什么不显示传入请求吗?