本篇内容介绍了“htaccess如何关闭PHP错误”的有关知识,在实际案例的操作过程中,不少人都会遇到这样的困境,接下来就让小编带领大家学习一下如何处理这些情况吧!希望大家仔细阅读,能够学有所成!htaccess关闭php错误的方法:首先找
本篇内容介绍了“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 offphp_flag display_errors offphp_flag html_errors offphp_value docref_root 0php_value docref_ext 0
只显示PHP错误:
php_flag display_errors onphp_flag display_startup_errors onphp_value error_reporting 2047
其中,“2047”为要显示的错误的级别,详细表格如下:
1 E_ERROR2 E_WARNING4 E_PARSE8 E_NOTICE16 E_CORE_ERROR32 E_CORE_WARNING64 E_COMPILE_ERROR128 E_COMPILE_WARNING256 E_USER_ERROR512 E_USER_WARNING1024 E_USER_NOTICE2047 E_ALL2048 E_STRICT4096 E_RECOVERABLE_ERROR
要把错误保存到日志文件中,可以这样设置:
# enable PHP error loggingphp_flag log_errors onphp_value error_log /home/path/public_html/domain/PHP_errors.log
然后,可以设置不允许访问.log文件:
# prevent access to PHP error loGorder allow,denyDeny from allSatisfy All
设置错误日志的最大体积,以bytes为单位:
# general directive for setting max error sizelog_errors_max_len integer
综合上述,.htaccess的PHP错误显示设置汇总:
# PHP error handling for production servers# disable display of startup errorsphp_flag display_startup_errors off# disable display of all other errorsphp_flag display_errors off# disable html markup of errorsphp_flag html_errors off# enable logging of errorsphp_flag log_errors on# disable ignoring of repeat errorsphp_flag ignore_repeated_errors off# disable ignoring of unique source errorsphp_flag ignore_repeated_source off# enable logging of php memory leaksphp_flag report_memleaks on# preserve most recent error via php_errORMsgphp_flag track_errors on# disable formatting of error reference linksphp_value docref_root 0# disable formatting of error reference linksphp_value docref_ext 0# specify path to php error logphp_value error_log /home/path/public_html/domain/PHP_errors.log# specify recording of all php errorsphp_value error_reporting 999999999# disable max error string lengthphp_value log_errors_max_len 0# protect error log by preventing public accessOrder allow,denyDeny from allSatisfy All
以下则是适合开发者应用的设置:
# PHP error handling for development serversphp_flag display_startup_errors onphp_flag display_errors onphp_flag html_errors onphp_flag log_errors onphp_flag ignore_repeated_errors offphp_flag ignore_repeated_source offphp_flag report_memleaks onphp_flag track_errors onphp_value docref_root 0php_value docref_ext 0php_value error_log /home/path/public_html/domain/PHP_errors.logphp_value error_reporting 999999999php_value log_errors_max_len 0Order allow,denyDeny from allSatisfy All
“htaccess如何关闭php错误”的内容就介绍到这里了,感谢大家的阅读。如果想了解更多行业相关的知识可以关注编程网网站,小编将为大家输出更多高质量的实用文章!
--结束END--
本文标题: htaccess如何关闭php错误
本文链接: https://lsjlt.com/news/297753.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0