문제

What is the syntax for setting output_buffering to off in .htaccess?

Provide a complete .htaccess file content please?

도움이 되었습니까?

해결책

This is isn't really a hard thing to find. Anyway, you need to make sure you have PHP running as an apache module for this to work in .htaccess.

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

<IfModule mod_php5.c>
  php_value output_buffering Off
</IfModule>
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top