可以使用.htaccess文件我躲在PHP的錯誤路徑可以使用.htaccess文件我躲在PHP的錯誤路徑
例子:
Notice: Undefined variable: hello in C:\xampp\htdocs\mysite\index.php on line 3
我想用的.htaccess或打印東西要隱藏的路徑讓我知道,如果有一個錯誤,而不打印頁面的路徑:
Notice: Undefined variable: hello on line 3
或
Notice: Undefined variable: hello
或
There is error in your page
編輯:
我把這個線在我的.htaccess 但我不能訪問我的網站。有錯誤「內部服務器錯誤」 我怎樣才能解決這個問題
# supress php errors
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
你不應該表現出這樣的錯誤消息,您的訪客在所有的error_log!它們僅適用於開發人員。 – Gumbo 2011-04-09 14:06:47
什麼是上下文?你不應該從PHP解釋器輸出錯誤/警告。如果有這樣的消息,你必須修復你的腳本。 – 2011-04-09 14:07:18
您是否將PHP作爲模塊運行,並且您是否擁有「'AllowOverride Options'」或「'AllowOverride All'」特權?否則,你不能使用['php_flag'和'php_value'](http://php.net/configuration.changes)。 – Gumbo 2011-04-09 14:28:35