使用.htaccess 顯示PHP 錯誤
要在設定檔存取受限的即時網站上除錯PHP 問題,可以使用.htaccess一個有用的解決方案。透過在.htaccess 檔案中新增以下程式碼,您可以在不修改php.ini 檔案的情況下啟用錯誤顯示:
php_flag display_errors on php_flag display_startup_errors on php_flag html_errors on
但是,這種方法僅在網頁上顯示錯誤,這對於敏感使用者可能不切實際網站。若要擷取日誌檔案中的錯誤以供以後分析,請將以下行新增至 .htaccess:
php_flag log_errors on php_value error_log /home/path/public_html/domain/PHP_errors.log
error_log 指令指定將記錄 PHP 錯誤的日誌檔案的路徑。您應該將“/home/path/public_html/domain/PHP_errors.log”替換為伺服器上的實際位置。
完成這些設定後,PHP 錯誤將顯示在網頁上並記錄到指定檔案。這使您能夠及時診斷問題,同時保持網站的用戶友好性。
以上是如何使用 .htaccess 顯示和記錄 PHP 錯誤?的詳細內容。更多資訊請關注PHP中文網其他相關文章!