在.htaccess中设置output_buffering的语法? (php 5)

时间:2014-02-04 19:40:51

标签: .htaccess output-buffering

在.htaccess中将output_buffering设置为off的语法是什么?

请提供完整的.htaccess文件内容吗?

1 个答案:

答案 0 :(得分:4)

这并不是一件难事。无论如何,您需要确保将PHP作为apache模块运行,以便在.htaccess中工作。

http://php.net/manual/en/configuration.changes.php

<IfModule mod_php5.c>
  php_value output_buffering Off
</IfModule>