我在WordPress中通過.htaccess
從前端抑制php錯誤。我想隱藏的錯誤由WordPress拋出,如果我們試圖通過文件夾結構來訪問文件:WordPress的壓制PHP錯誤通過htaccess投擲500錯誤
如:www.my_site/wp-content/themes/twentyeleven/sidebar-page.php
的.htaccess片段:
php_flag display_errors off
但是,它引發了500個內部服務器錯誤。我試過
error_reporting(0);
ini_set('display_errors', 0);
在header.php文件中沒有變化。 如果發生500錯誤,有什麼辦法可以重定向到主頁嗎?
可能重複的[php隱藏所有錯誤](http://stackoverflow.com/questions/9242903/php-hide-all-errors) – MrWhite