91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

htaccess如何關閉php錯誤

發布時間:2021-07-10 10:35:40 來源:億速云 閱讀:152 作者:chen 欄目:編程語言

本篇內容介紹了“htaccess如何關閉php錯誤”的有關知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領大家學習一下如何處理這些情況吧!希望大家仔細閱讀,能夠學有所成!

htaccess關閉php錯誤的方法:首先找到“.htaccess”文件;然后將“php_flag display_startup_errors off”等代碼放到對應目錄中的“.htaccess”文件即可。

本文操作環境:windows7系統、PHP7.1版,DELL G3電腦

htaccess怎么關閉php錯誤?

用.htaccess關閉PHP錯誤顯示

將以下相應代碼放到對應目錄中的.htaccess文件,即可實現相應功能。

關閉錯誤顯示:

php_flag display_startup_errors off
php_flag display_errors off
php_flag html_errors off
php_value docref_root 0
php_value docref_ext 0

只顯示PHP錯誤:

php_flag  display_errors        on
php_flag  display_startup_errors on
php_value error_reporting        2047

其中,“2047”為要顯示的錯誤的級別,詳細表格如下:

1 E_ERROR
2 E_WARNING
4 E_PARSE
8 E_NOTICE
16 E_CORE_ERROR
32 E_CORE_WARNING
64 E_COMPILE_ERROR
128 E_COMPILE_WARNING
256 E_USER_ERROR
512 E_USER_WARNING
1024 E_USER_NOTICE
2047 E_ALL
2048 E_STRICT
4096 E_RECOVERABLE_ERROR

要把錯誤保存到日志文件中,可以這樣設置:

# enable PHP error logging
php_flag  log_errors on
php_value error_log  /home/path/public_html/domain/PHP_errors.log

然后,可以設置不允許訪問.log文件:

# prevent access to PHP error log
Order allow,deny
Deny from all
Satisfy All

設置錯誤日志的最大體積,以bytes為單位:

# general directive for setting max error size
log_errors_max_len integer

綜合上述,.htaccess的PHP錯誤顯示設置匯總:

# PHP error handling for production servers
# disable display of startup errors
php_flag display_startup_errors off
# disable display of all other errors
php_flag display_errors off
# disable html markup of errors
php_flag html_errors off
# enable logging of errors
php_flag log_errors on
# disable ignoring of repeat errors
php_flag ignore_repeated_errors off
# disable ignoring of unique source errors
php_flag ignore_repeated_source off
# enable logging of php memory leaks
php_flag report_memleaks on
# preserve most recent error via php_errormsg
php_flag track_errors on
# disable formatting of error reference links
php_value docref_root 0
# disable formatting of error reference links
php_value docref_ext 0
# specify path to php error log
php_value error_log /home/path/public_html/domain/PHP_errors.log
# specify recording of all php errors
php_value error_reporting 999999999
# disable max error string length
php_value log_errors_max_len 0
# protect error log by preventing public access
Order allow,deny
Deny from all
Satisfy All

以下則是適合開發者應用的設置:

# PHP error handling for development servers
php_flag display_startup_errors on
php_flag display_errors on
php_flag html_errors on
php_flag log_errors on
php_flag ignore_repeated_errors off
php_flag ignore_repeated_source off
php_flag report_memleaks on
php_flag track_errors on
php_value docref_root 0
php_value docref_ext 0
php_value error_log /home/path/public_html/domain/PHP_errors.log
php_value error_reporting 999999999
php_value log_errors_max_len 0
Order allow,deny
Deny from all
Satisfy All

“htaccess如何關閉php錯誤”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識可以關注億速云網站,小編將為大家輸出更多高質量的實用文章!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

扎鲁特旗| 青铜峡市| 前郭尔| 丹江口市| 大埔县| 崇州市| 绵竹市| 濉溪县| 前郭尔| 长垣县| 凤山市| 尼玛县| 唐海县| 鲁甸县| 永和县| 上蔡县| 阳朔县| 湾仔区| 万安县| 驻马店市| 资中县| 龙里县| SHOW| 沭阳县| 胶州市| 宁都县| 闸北区| 额尔古纳市| 沙洋县| 普兰店市| 溧阳市| 大同市| 阿图什市| 合水县| 汪清县| 黑水县| 新昌县| 德格县| 宁海县| 绥宁县| 丹凤县|