2017-04-10 40 views
0

下面我提到了apache htaccess的error_log规范。我如何在IIS服务器中使用相同的细节。在IIS中,我该如何使用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> 

回答

相关问题