使用RewriteEngine从php页面更改内容类型的响应

时间:2012-03-27 10:06:44

标签: php xampp

我有一个php页面,其内容类型设置为" application / xhtml + xml"使用

$CONTENT_TYPE = 'Content-type: application/xhtml+xml; charset=utf-8';
header($CONTENT_TYPE);

我需要在渲染时将内容类型更改为text / html。

我尝试使用以下代码,但它不起作用:

RewriteEngine on
  RewriteCond %{HTTP_USER_AGENT} ^.*(opera|mozilla|firefox|msie|safari).*$ [NC,OR]
  RewriteCond %{HTTP:Content-Type} ^application/.+ [NC] 
  RewriteRule .* - [T=text/html]

如何解决这个问题? 使用xampp服务器呈现页面。

0 个答案:

没有答案