在.htaccess中将output_buffering设置为off的语法是什么?
请提供完整的.htaccess文件内容吗?
答案 0 :(得分:4)
这并不是一件难事。无论如何,您需要确保将PHP作为apache模块运行,以便在.htaccess
中工作。
http://php.net/manual/en/configuration.changes.php
<IfModule mod_php5.c>
php_value output_buffering Off
</IfModule>