如何为每个域使用单独的PHP错误日志文件?

时间:2017-04-11 10:20:34

标签: php iis-7

如何为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>

0 个答案:

没有答案