下面我提到了apache htaccess error_log规范。我如何在IIS服务器中使用相同的细节。
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 :(得分:0)
由于htaccess用于httpd服务器(即Apache HTTP服务器),因此IIS不会使用它。相反,IIS使用Web.config文件。
你需要一些IIS插件,它会负责解析htaccess文件,或者你可能需要将htaccess规则转换为等效的Web.config规则。