我想禁用单个 URL 模式的 output_buffering:,/script/*
如何在 apache 配置中执行此操作?我正在使用 mod_rewrite,因此实际目录不存在。
答案1
谷歌,你的朋友:http://php.net/manual/en/configuration.changes.php
我的猜测(未经测试):
<Location /script/>
<IfModule mod_php5.c>
php_value output_buffering 0
</IfModule>
</Location>