让 Apache 为 PHP 发送 Content-Type text/plain

让 Apache 为 PHP 发送 Content-Type text/plain

如何让 apache 发送 php 文件的 Content-Type text/plain?

我可以使用 php 来实现这一点

header('Content-Type: text/plain');

我尝试将其添加到我的 vhost.conf(我正在使用 Plesk)并重新加载并重新启动 apache

<Directory />
    AddType text/plain php
</Directory>

似乎没什么帮助。

我也尝试在 .htaccess 中设置 AddType,但仍然没有成功。

答案1

您的 AddType 可能在配置中的其他地方被覆盖。使用力类型反而。

<FilesMatch "\.php$">
  ForceType text/plain
</FilesMatch>

相关内容