如何为IIS服务器中的每个网站使用单独的PHP错误日志文件?目前Apache正在htaccess文件中提供此功能。下面是Apache htaccess示例代码:
php_flag display_startup_errors off
php_flag display_errors off
php_flag html_errors off
# enable PHP error logging
php_flag log_errors on
php_value error_log phperrors.log
# prevent access to PHP error log
<Files PHP_errors.log>
Order allow,deny
Deny from all
Satisfy All
</Files>