Apache Rewrite模块的内容类型

时间:2015-07-11 14:14:55

标签: apache mod-rewrite

我尝试通过以下规则将内容类型传递给我的脚本:

RewriteEngine On
RewriteRule /* /usr/lib/cgi-bin/leecher/leecher.php?uri=%{REQUEST_URI}&q=%{QUERY_STRING}&ct=%{HTTP:Content-Type}

ct参数什么都没有

你错了什么?

1 个答案:

答案 0 :(得分:0)

Content-Type标头设置在从服务器到客户端的响应中,或者通过POST请求发送。 AFAIK,GET,未发送Content-Type标头。这就是为什么你的ct param是空的。

当你使用php时,你已经拥有$_SERVER数组中的所有参数...可能比创建新的查询字符串更容易。